37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||
|
|
|
||
|
|
#nullable disable
|
||
|
|
|
||
|
|
namespace JobsMedical.Web.Migrations
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
public partial class DataProtectionKeys : Migration
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||
|
|
{
|
||
|
|
migrationBuilder.CreateTable(
|
||
|
|
name: "DataProtectionKeys",
|
||
|
|
columns: table => new
|
||
|
|
{
|
||
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||
|
|
FriendlyName = table.Column<string>(type: "text", nullable: true),
|
||
|
|
Xml = table.Column<string>(type: "text", nullable: true)
|
||
|
|
},
|
||
|
|
constraints: table =>
|
||
|
|
{
|
||
|
|
table.PrimaryKey("PK_DataProtectionKeys", x => x.Id);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||
|
|
{
|
||
|
|
migrationBuilder.DropTable(
|
||
|
|
name: "DataProtectionKeys");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|