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
94
95
96
97
98
99
100
101
102
103
104
105
|
using System;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
namespace Timeline.Migrations.ProductionDatabase
{
public partial class Initialize : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "users",
columns: table => new
{
id = table.Column<long>(nullable: false)
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
name = table.Column<string>(maxLength: 26, nullable: false),
password = table.Column<string>(nullable: false),
roles = table.Column<string>(nullable: false),
version = table.Column<long>(nullable: false, defaultValue: 0L)
},
constraints: table =>
{
table.PrimaryKey("PK_users", x => x.id);
});
migrationBuilder.CreateTable(
name: "user_avatars",
columns: table => new
{
id = table.Column<long>(nullable: false)
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
data = table.Column<byte[]>(nullable: true),
type = table.Column<string>(nullable: true),
etag = table.Column<string>(maxLength: 30, nullable: true),
last_modified = table.Column<DateTime>(nullable: false),
UserId = table.Column<long>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_user_avatars", x => x.id);
table.ForeignKey(
name: "FK_user_avatars_users_UserId",
column: x => x.UserId,
principalTable: "users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "user_details",
columns: table => new
{
id = table.Column<long>(nullable: false)
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
nickname = table.Column<string>(maxLength: 26, nullable: true),
UserId = table.Column<long>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_user_details", x => x.id);
table.ForeignKey(
name: "FK_user_details_users_UserId",
column: x => x.UserId,
principalTable: "users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_user_avatars_UserId",
table: "user_avatars",
column: "UserId",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_user_details_UserId",
table: "user_details",
column: "UserId",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_users_name",
table: "users",
column: "name",
unique: true);
// Add a init user. Username is "administrator". Password is "crupest".
migrationBuilder.InsertData("users", new string[] { "name", "password", "roles" },
new object[] { "administrator", "AQAAAAEAACcQAAAAENsspZrk8Wo+UuMyg6QuWJsNvRg6gVu4K/TumVod3h9GVLX9zDVuQQds3o7V8QWJ2w==", "user,admin" });
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "user_avatars");
migrationBuilder.DropTable(
name: "user_details");
migrationBuilder.DropTable(
name: "users");
}
}
}
|