Skip to content

Commit 55f426f

Browse files
authored
Merge pull request #651 from cloudscribe/migration_patch_dev
patch migration for MySQL - dev version as already patched into master - jk
2 parents 5ebd5f9 + 2e1244d commit 55f426f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cloudscribe.SimpleContent.Storage.EFCore.MySQL/Migrations/20241108094512_simplecontent-20241108.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@ protected override void Up(MigrationBuilder migrationBuilder)
1313
migrationBuilder.AddColumn<bool>(
1414
name: "ShowCreatedBy",
1515
table: "cs_Page",
16-
type: "boolean(1)",
16+
type: "tinyint(1)",
1717
nullable: true);
1818

1919
migrationBuilder.AddColumn<bool>(
2020
name: "ShowCreatedDate",
2121
table: "cs_Page",
22-
type: "boolean(1)",
22+
type: "tinyint(1)",
2323
nullable: true);
2424

2525
migrationBuilder.AddColumn<bool>(
2626
name: "ShowLastModifiedBy",
2727
table: "cs_Page",
28-
type: "boolean(1)",
28+
type: "tinyint(1)",
2929
nullable: true);
3030

3131
migrationBuilder.AddColumn<bool>(
3232
name: "ShowLastModifiedDate",
3333
table: "cs_Page",
34-
type: "boolean(1)",
34+
type: "tinyint(1)",
3535
nullable: true);
3636

3737
migrationBuilder.AddColumn<bool>(

0 commit comments

Comments
 (0)