File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -396,6 +396,13 @@ internal void CheckSchema() // intial mysql table
396396 Main . Instance . Configuration . Instance . MySQLTableVer = 3 ;
397397 Main . Instance . Configuration . Save ( ) ;
398398 }
399+ if ( Main . Instance . Configuration . Instance . MySQLTableVer == 3 )
400+ {
401+ ExecuteQuery ( true , $ "ALTER TABLE `{ Main . Instance . Configuration . Instance . DatabaseCDKTableName } ` MODIFY `GrantPermissionGroup` VARCHAR(32)") ;
402+ ExecuteQuery ( true , $ "ALTER TABLE `{ Main . Instance . Configuration . Instance . DatabaseCDKTableName } ` MODIFY `Owner` BIGINT UNSIGNED") ;
403+ Main . Instance . Configuration . Instance . MySQLTableVer = 4 ;
404+ Main . Instance . Configuration . Save ( ) ;
405+ }
399406 }
400407
401408 private MySqlConnection CreateConnection ( )
Original file line number Diff line number Diff line change 3232//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
3333//通过使用 "*",如下所示:
3434// [assembly: AssemblyVersion("1.0.*")]
35- [ assembly: AssemblyVersion ( "3.3.0.1 " ) ]
36- [ assembly: AssemblyFileVersion ( "3.3.0.1 " ) ]
35+ [ assembly: AssemblyVersion ( "3.3.0.2 " ) ]
36+ [ assembly: AssemblyFileVersion ( "3.3.0.2 " ) ]
You can’t perform that action at this time.
0 commit comments