122 lines
5.5 KiB
C#
122 lines
5.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json;
|
|
using DysonNetwork.Sphere.Poll;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using NodaTime;
|
|
|
|
#nullable disable
|
|
|
|
namespace DysonNetwork.Sphere.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddPoll : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "polls",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
title = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: true),
|
|
description = table.Column<string>(type: "character varying(4096)", maxLength: 4096, nullable: true),
|
|
ended_at = table.Column<Instant>(type: "timestamp with time zone", nullable: true),
|
|
publisher_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_polls", x => x.id);
|
|
table.ForeignKey(
|
|
name: "fk_polls_publishers_publisher_id",
|
|
column: x => x.publisher_id,
|
|
principalTable: "publishers",
|
|
principalColumn: "id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "poll_answers",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
answer = table.Column<Dictionary<string, JsonElement>>(type: "jsonb", nullable: false),
|
|
account_id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
poll_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_poll_answers", x => x.id);
|
|
table.ForeignKey(
|
|
name: "fk_poll_answers_polls_poll_id",
|
|
column: x => x.poll_id,
|
|
principalTable: "polls",
|
|
principalColumn: "id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "poll_questions",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
type = table.Column<int>(type: "integer", nullable: false),
|
|
options = table.Column<List<PollOption>>(type: "jsonb", nullable: true),
|
|
title = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: false),
|
|
description = table.Column<string>(type: "character varying(4096)", maxLength: 4096, nullable: true),
|
|
order = table.Column<int>(type: "integer", nullable: false),
|
|
is_required = table.Column<bool>(type: "boolean", nullable: false),
|
|
poll_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_poll_questions", x => x.id);
|
|
table.ForeignKey(
|
|
name: "fk_poll_questions_polls_poll_id",
|
|
column: x => x.poll_id,
|
|
principalTable: "polls",
|
|
principalColumn: "id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_poll_answers_poll_id",
|
|
table: "poll_answers",
|
|
column: "poll_id");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_poll_questions_poll_id",
|
|
table: "poll_questions",
|
|
column: "poll_id");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_polls_publisher_id",
|
|
table: "polls",
|
|
column: "publisher_id");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "poll_answers");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "poll_questions");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "polls");
|
|
}
|
|
}
|
|
}
|