diff options
author | crupest <crupest@outlook.com> | 2022-12-25 21:44:45 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-25 21:44:45 +0800 |
commit | 08c1b22cc48a7e045090677a04f4d3e106476ecb (patch) | |
tree | 1bbeab2e020f59b113ad1e4b7f4b36374c29da60 /docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/Migrations/DatabaseMigrator.cs | |
parent | 5a163e8ced3cb02d4e05c11f6d68977c92420bde (diff) | |
download | crupest-08c1b22cc48a7e045090677a04f4d3e106476ecb.tar.gz crupest-08c1b22cc48a7e045090677a04f4d3e106476ecb.tar.bz2 crupest-08c1b22cc48a7e045090677a04f4d3e106476ecb.zip |
Add migration. v3.0
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/Migrations/DatabaseMigrator.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/Migrations/DatabaseMigrator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/Migrations/DatabaseMigrator.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/Migrations/DatabaseMigrator.cs index e5ef05d..cf10916 100644 --- a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/Migrations/DatabaseMigrator.cs +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/Migrations/DatabaseMigrator.cs @@ -6,8 +6,8 @@ public class TableColumn { public TableColumn(string name, string type, bool notNull, int primaryKey) { - Name = name.ToLowerInvariant(); - Type = type.ToLowerInvariant(); + Name = name; + Type = type; NotNull = notNull; PrimaryKey = primaryKey; } |