| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace bitforum.Migrations.DefaultDb
- {
- /// <inheritdoc />
- public partial class AddBannerTables : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "Link",
- table: "Popup",
- type: "nvarchar(255)",
- maxLength: 255,
- nullable: true,
- oldClrType: typeof(string),
- oldType: "nvarchar(255)",
- oldMaxLength: 255);
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "Link",
- table: "Popup",
- type: "nvarchar(255)",
- maxLength: 255,
- nullable: false,
- defaultValue: "",
- oldClrType: typeof(string),
- oldType: "nvarchar(255)",
- oldMaxLength: 255,
- oldNullable: true);
- }
- }
- }
|