You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
4.2 KiB
76 lines
4.2 KiB
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace LY.MicroService.RealtimeMessage.Migrations
|
|
{
|
|
public partial class AddDynamicNotification : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "AppNotificationDefinitionGroups",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
|
|
Name = table.Column<string>(type: "varchar(64)", maxLength: 64, nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
DisplayName = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Description = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
ResourceName = table.Column<string>(type: "varchar(64)", maxLength: 64, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Localization = table.Column<string>(type: "varchar(128)", maxLength: 128, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
AllowSubscriptionToClients = table.Column<bool>(type: "tinyint(1)", nullable: false),
|
|
ExtraProperties = table.Column<string>(type: "longtext", nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AppNotificationDefinitionGroups", x => x.Id);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AppNotificationDefinitions",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "char(36)", nullable: false, collation: "ascii_general_ci"),
|
|
Name = table.Column<string>(type: "varchar(64)", maxLength: 64, nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
DisplayName = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Description = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
ResourceName = table.Column<string>(type: "varchar(64)", maxLength: 64, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Localization = table.Column<string>(type: "varchar(128)", maxLength: 128, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
NotificationLifetime = table.Column<int>(type: "int", nullable: false),
|
|
NotificationType = table.Column<int>(type: "int", nullable: false),
|
|
Providers = table.Column<string>(type: "varchar(200)", maxLength: 200, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
AllowSubscriptionToClients = table.Column<bool>(type: "tinyint(1)", nullable: false),
|
|
ExtraProperties = table.Column<string>(type: "longtext", nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AppNotificationDefinitions", x => x.Id);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "AppNotificationDefinitionGroups");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AppNotificationDefinitions");
|
|
}
|
|
}
|
|
}
|
|
|