forked from Eauldane/SnowcloakServer
93 lines
3.5 KiB
C#
93 lines
3.5 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace MareSynchronosServer.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class UserProfileReports : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "flagged_for_report",
|
|
table: "user_profile_data",
|
|
type: "boolean",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "is_nsfw",
|
|
table: "user_profile_data",
|
|
type: "boolean",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "profile_disabled",
|
|
table: "user_profile_data",
|
|
type: "boolean",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "user_profile_data_reports",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
report_date = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
reported_user_uid = table.Column<string>(type: "character varying(10)", nullable: true),
|
|
reporting_user_uid = table.Column<string>(type: "character varying(10)", nullable: true),
|
|
report_reason = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("pk_user_profile_data_reports", x => x.id);
|
|
table.ForeignKey(
|
|
name: "fk_user_profile_data_reports_users_reported_user_uid",
|
|
column: x => x.reported_user_uid,
|
|
principalTable: "users",
|
|
principalColumn: "uid");
|
|
table.ForeignKey(
|
|
name: "fk_user_profile_data_reports_users_reporting_user_uid",
|
|
column: x => x.reporting_user_uid,
|
|
principalTable: "users",
|
|
principalColumn: "uid");
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_user_profile_data_reports_reported_user_uid",
|
|
table: "user_profile_data_reports",
|
|
column: "reported_user_uid");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "ix_user_profile_data_reports_reporting_user_uid",
|
|
table: "user_profile_data_reports",
|
|
column: "reporting_user_uid");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "user_profile_data_reports");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "flagged_for_report",
|
|
table: "user_profile_data");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "is_nsfw",
|
|
table: "user_profile_data");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "profile_disabled",
|
|
table: "user_profile_data");
|
|
}
|
|
}
|
|
}
|