50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using Microsoft.EntityFrameworkCore.Migrations;
 | 
						|
using NodaTime;
 | 
						|
 | 
						|
#nullable disable
 | 
						|
 | 
						|
namespace DysonNetwork.Sphere.Migrations
 | 
						|
{
 | 
						|
    /// <inheritdoc />
 | 
						|
    public partial class AddStickerOwnerships : Migration
 | 
						|
    {
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Up(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.CreateTable(
 | 
						|
                name: "sticker_pack_ownerships",
 | 
						|
                columns: table => new
 | 
						|
                {
 | 
						|
                    id = table.Column<Guid>(type: "uuid", nullable: false),
 | 
						|
                    pack_id = table.Column<Guid>(type: "uuid", nullable: false),
 | 
						|
                    account_id = table.Column<Guid>(type: "uuid", nullable: false),
 | 
						|
                    created_at = table.Column<Instant>(type: "timestamp with time zone", nullable: false),
 | 
						|
                    updated_at = table.Column<Instant>(type: "timestamp with time zone", nullable: false),
 | 
						|
                    deleted_at = table.Column<Instant>(type: "timestamp with time zone", nullable: true)
 | 
						|
                },
 | 
						|
                constraints: table =>
 | 
						|
                {
 | 
						|
                    table.PrimaryKey("pk_sticker_pack_ownerships", x => x.id);
 | 
						|
                    table.ForeignKey(
 | 
						|
                        name: "fk_sticker_pack_ownerships_sticker_packs_pack_id",
 | 
						|
                        column: x => x.pack_id,
 | 
						|
                        principalTable: "sticker_packs",
 | 
						|
                        principalColumn: "id",
 | 
						|
                        onDelete: ReferentialAction.Cascade);
 | 
						|
                });
 | 
						|
 | 
						|
            migrationBuilder.CreateIndex(
 | 
						|
                name: "ix_sticker_pack_ownerships_pack_id",
 | 
						|
                table: "sticker_pack_ownerships",
 | 
						|
                column: "pack_id");
 | 
						|
        }
 | 
						|
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Down(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.DropTable(
 | 
						|
                name: "sticker_pack_ownerships");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |