using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore.Migrations; using NodaTime; #nullable disable namespace DysonNetwork.Pass.Migrations { /// public partial class RemoveNotification : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "notification_push_subscriptions"); migrationBuilder.DropTable( name: "notifications"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "notification_push_subscriptions", columns: table => new { id = table.Column(type: "uuid", nullable: false), account_id = table.Column(type: "uuid", nullable: false), created_at = table.Column(type: "timestamp with time zone", nullable: false), deleted_at = table.Column(type: "timestamp with time zone", nullable: true), device_id = table.Column(type: "character varying(4096)", maxLength: 4096, nullable: false), device_token = table.Column(type: "character varying(4096)", maxLength: 4096, nullable: false), last_used_at = table.Column(type: "timestamp with time zone", nullable: true), provider = table.Column(type: "integer", nullable: false), updated_at = table.Column(type: "timestamp with time zone", nullable: false) }, constraints: table => { table.PrimaryKey("pk_notification_push_subscriptions", x => x.id); table.ForeignKey( name: "fk_notification_push_subscriptions_accounts_account_id", column: x => x.account_id, principalTable: "accounts", principalColumn: "id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "notifications", columns: table => new { id = table.Column(type: "uuid", nullable: false), account_id = table.Column(type: "uuid", nullable: false), content = table.Column(type: "character varying(4096)", maxLength: 4096, nullable: true), created_at = table.Column(type: "timestamp with time zone", nullable: false), deleted_at = table.Column(type: "timestamp with time zone", nullable: true), meta = table.Column>(type: "jsonb", nullable: true), priority = table.Column(type: "integer", nullable: false), subtitle = table.Column(type: "character varying(2048)", maxLength: 2048, nullable: true), title = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: true), topic = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: false), updated_at = table.Column(type: "timestamp with time zone", nullable: false), viewed_at = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { table.PrimaryKey("pk_notifications", x => x.id); table.ForeignKey( name: "fk_notifications_accounts_account_id", column: x => x.account_id, principalTable: "accounts", principalColumn: "id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "ix_notification_push_subscriptions_account_id", table: "notification_push_subscriptions", column: "account_id"); migrationBuilder.CreateIndex( name: "ix_notification_push_subscriptions_device_token_device_id_acco", table: "notification_push_subscriptions", columns: new[] { "device_token", "device_id", "account_id" }, unique: true); migrationBuilder.CreateIndex( name: "ix_notifications_account_id", table: "notifications", column: "account_id"); } } }