1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace IOL.Fagprove.Migrations
{
public partial class Intial : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Cabins",
columns: table => new
{
Id = table.Column<Guid>(nullable: false),
CreatedUtc = table.Column<DateTime>(nullable: true),
CreatedBy = table.Column<Guid>(nullable: true),
ModifiedUtc = table.Column<DateTime>(nullable: true),
ModifiedBy = table.Column<Guid>(nullable: true),
CategoryId = table.Column<Guid>(nullable: false),
Name = table.Column<string>(nullable: true),
Capacity = table.Column<int>(nullable: true),
Price = table.Column<string>(nullable: true),
Description = table.Column<string>(nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_Cabins", x => x.Id);
});
migrationBuilder.CreateTable(
name: "Reservations",
columns: table => new
{
Id = table.Column<Guid>(nullable: false),
CreatedUtc = table.Column<DateTime>(nullable: true),
CreatedBy = table.Column<Guid>(nullable: true),
ModifiedUtc = table.Column<DateTime>(nullable: true),
ModifiedBy = table.Column<Guid>(nullable: true),
UserId = table.Column<Guid>(nullable: false),
ReservationObjectId = table.Column<Guid>(nullable: false),
From = table.Column<DateTime>(nullable: false),
To = table.Column<DateTime>(nullable: false),
Status = table.Column<int>(nullable: false),
Extra = table.Column<string>(nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_Reservations", x => x.Id);
});
migrationBuilder.CreateTable(
name: "Users",
columns: table => new
{
Id = table.Column<Guid>(nullable: false),
CreatedUtc = table.Column<DateTime>(nullable: true),
CreatedBy = table.Column<Guid>(nullable: true),
ModifiedUtc = table.Column<DateTime>(nullable: true),
ModifiedBy = table.Column<Guid>(nullable: true),
Name = table.Column<string>(nullable: true),
Email = table.Column<string>(nullable: true),
Password = table.Column<string>(nullable: true),
Role = table.Column<int>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Users", x => x.Id);
});
migrationBuilder.InsertData(
table: "Users",
columns: new[] { "Id", "CreatedBy", "CreatedUtc", "Email", "ModifiedBy", "ModifiedUtc", "Name", "Password", "Role" },
values: new object[] { new Guid("d2512ef5-f25e-486d-a94d-1ea43c732195"), null, new DateTime(2020, 2, 5, 23, 30, 13, 316, DateTimeKind.Utc).AddTicks(6060), "ivar@protektit.no", null, null, "Ivar Løvlie Administrator", "9F267A5EC952ABC97CC5B768AEF42337", 1 });
migrationBuilder.InsertData(
table: "Users",
columns: new[] { "Id", "CreatedBy", "CreatedUtc", "Email", "ModifiedBy", "ModifiedUtc", "Name", "Password", "Role" },
values: new object[] { new Guid("e166655c-cbdc-4128-8e0e-9aeb9c52093d"), null, new DateTime(2020, 2, 5, 23, 30, 13, 320, DateTimeKind.Utc).AddTicks(310), "ivarino@protektit.no", null, null, "Ivar Løvlie Standard", "9F267A5EC952ABC97CC5B768AEF42337", 0 });
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Cabins");
migrationBuilder.DropTable(
name: "Reservations");
migrationBuilder.DropTable(
name: "Users");
}
}
}
|