mirror of
https://github.com/C9Glax/tranga.git
synced 2025-05-21 13:43:01 +02:00
60 lines
2.4 KiB
C#
60 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace API.Migrations.notifications
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Initial : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterDatabase()
|
|
.Annotation("Npgsql:PostgresExtension:hstore", ",,");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "NotificationConnectors",
|
|
columns: table => new
|
|
{
|
|
Name = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false),
|
|
Url = table.Column<string>(type: "character varying(2048)", maxLength: 2048, nullable: false),
|
|
Headers = table.Column<Dictionary<string, string>>(type: "hstore", nullable: false),
|
|
HttpMethod = table.Column<string>(type: "character varying(8)", maxLength: 8, nullable: false),
|
|
Body = table.Column<string>(type: "character varying(4096)", maxLength: 4096, nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_NotificationConnectors", x => x.Name);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Notifications",
|
|
columns: table => new
|
|
{
|
|
NotificationId = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false),
|
|
Urgency = table.Column<byte>(type: "smallint", nullable: false),
|
|
Title = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false),
|
|
Message = table.Column<string>(type: "character varying(512)", maxLength: 512, nullable: false),
|
|
Date = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Notifications", x => x.NotificationId);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "NotificationConnectors");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Notifications");
|
|
}
|
|
}
|
|
}
|