| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace bitforum.Migrations.DefaultDb
- {
- /// <inheritdoc />
- public partial class AddConfigTable : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.CreateTable(
- name: "Config",
- columns: table => new
- {
- ID = table.Column<int>(type: "int", nullable: false)
- .Annotation("SqlServer:Identity", "1, 1"),
- Key = table.Column<string>(type: "nvarchar(450)", nullable: false),
- Value = table.Column<string>(type: "nvarchar(max)", nullable: true),
- Description = table.Column<string>(type: "nvarchar(max)", nullable: true),
- CreatedAt = table.Column<DateTime>(type: "datetime2", nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Config", x => x.ID);
- });
- migrationBuilder.CreateIndex(
- name: "IX_Config_Key",
- table: "Config",
- column: "Key",
- unique: true);
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "Config");
- }
- }
- }
|