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
|
using Microsoft.EntityFrameworkCore.Migrations;
using System;
namespace Timeline.Migrations
{
public partial class PostData : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "content_type",
table: "timeline_posts",
type: "TEXT",
nullable: true,
oldClrType: typeof(string),
oldType: "TEXT");
migrationBuilder.AddColumn<bool>(
name: "deleted",
table: "timeline_posts",
type: "INTEGER",
nullable: false,
defaultValue: false);
migrationBuilder.CreateTable(
name: "migrations",
columns: table => new
{
id = table.Column<long>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
name = table.Column<string>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_migrations", x => x.id);
});
migrationBuilder.CreateTable(
name: "timeline_post_data",
columns: table => new
{
id = table.Column<long>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
post = table.Column<long>(type: "INTEGER", nullable: false),
index = table.Column<long>(type: "INTEGER", nullable: false),
kind = table.Column<string>(type: "TEXT", nullable: false),
data_tag = table.Column<string>(type: "TEXT", nullable: false),
last_updated = table.Column<DateTime>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_timeline_post_data", x => x.id);
table.ForeignKey(
name: "FK_timeline_post_data_timeline_posts_post",
column: x => x.post,
principalTable: "timeline_posts",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_timeline_post_data_post",
table: "timeline_post_data",
column: "post");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "migrations");
migrationBuilder.DropTable(
name: "timeline_post_data");
migrationBuilder.DropColumn(
name: "deleted",
table: "timeline_posts");
migrationBuilder.AlterColumn<string>(
name: "content_type",
table: "timeline_posts",
type: "TEXT",
nullable: false,
defaultValue: "",
oldClrType: typeof(string),
oldType: "TEXT",
oldNullable: true);
}
}
}
|