|
|
|
|
@ -1,4 +1,5 @@
@@ -1,4 +1,5 @@
|
|
|
|
|
using System; |
|
|
|
|
using Microsoft.EntityFrameworkCore.Metadata; |
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
|
|
|
|
|
|
namespace Bit.CryptoAgent.Migrations.MySql |
|
|
|
|
@ -14,11 +15,14 @@ namespace Bit.CryptoAgent.Migrations.MySql
@@ -14,11 +15,14 @@ namespace Bit.CryptoAgent.Migrations.MySql
|
|
|
|
|
name: "ApplicationDatas", |
|
|
|
|
columns: table => new |
|
|
|
|
{ |
|
|
|
|
Id = table.Column<int>(type: "int", nullable: false) |
|
|
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), |
|
|
|
|
SymmetricKey = table.Column<string>(type: "longtext", nullable: true) |
|
|
|
|
.Annotation("MySql:CharSet", "utf8mb4") |
|
|
|
|
}, |
|
|
|
|
constraints: table => |
|
|
|
|
{ |
|
|
|
|
table.PrimaryKey("PK_ApplicationDatas", x => x.Id); |
|
|
|
|
}) |
|
|
|
|
.Annotation("MySql:CharSet", "utf8mb4"); |
|
|
|
|
|