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 { /// public partial class AddPoll : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "polls", columns: table => new { id = table.Column(type: "uuid", nullable: false), title = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: true), description = table.Column(type: "character varying(4096)", maxLength: 4096, nullable: true), ended_at = table.Column(type: "timestamp with time zone", nullable: true), publisher_id = table.Column(type: "uuid", nullable: false), created_at = table.Column(type: "timestamp with time zone", nullable: false), updated_at = table.Column(type: "timestamp with time zone", nullable: false), deleted_at = table.Column(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(type: "uuid", nullable: false), answer = table.Column>(type: "jsonb", nullable: false), account_id = table.Column(type: "uuid", nullable: false), poll_id = table.Column(type: "uuid", nullable: false), created_at = table.Column(type: "timestamp with time zone", nullable: false), updated_at = table.Column(type: "timestamp with time zone", nullable: false), deleted_at = table.Column(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(type: "uuid", nullable: false), type = table.Column(type: "integer", nullable: false), options = table.Column>(type: "jsonb", nullable: true), title = table.Column(type: "character varying(1024)", maxLength: 1024, nullable: false), description = table.Column(type: "character varying(4096)", maxLength: 4096, nullable: true), order = table.Column(type: "integer", nullable: false), is_required = table.Column(type: "boolean", nullable: false), poll_id = table.Column(type: "uuid", nullable: false), created_at = table.Column(type: "timestamp with time zone", nullable: false), updated_at = table.Column(type: "timestamp with time zone", nullable: false), deleted_at = table.Column(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"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "poll_answers"); migrationBuilder.DropTable( name: "poll_questions"); migrationBuilder.DropTable( name: "polls"); } } }