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
|
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Data.Migrations
{
/// <inheritdoc />
public partial class AddPushNotifications : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "active_notified_at",
table: "service_alerts",
type: "timestamp with time zone",
nullable: true);
migrationBuilder.AddColumn<DateTime>(
name: "pre_notice_notified_at",
table: "service_alerts",
type: "timestamp with time zone",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "version",
table: "service_alerts",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.CreateTable(
name: "push_subscriptions",
columns: table => new
{
id = table.Column<Guid>(type: "uuid", nullable: false),
endpoint = table.Column<string>(type: "text", nullable: false),
p256dh_key = table.Column<string>(type: "text", nullable: false),
auth_key = table.Column<string>(type: "text", nullable: false),
created_at = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("pK_push_subscriptions", x => x.id);
});
migrationBuilder.CreateIndex(
name: "iX_push_subscriptions_endpoint",
table: "push_subscriptions",
column: "endpoint",
unique: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "push_subscriptions");
migrationBuilder.DropColumn(
name: "active_notified_at",
table: "service_alerts");
migrationBuilder.DropColumn(
name: "pre_notice_notified_at",
table: "service_alerts");
migrationBuilder.DropColumn(
name: "version",
table: "service_alerts");
}
}
}
|