We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98087f6 commit a0309ccCopy full SHA for a0309cc
src/AgileConfig.Server.Data.Freesql/EnsureTables.cs
@@ -8,7 +8,7 @@ namespace AgileConfig.Server.Data.Freesql
8
public class EnsureTables
9
{
10
private const string Sqlite_ExistTableSql =
11
- "SELECT count(1) FROM sqlite_master WHERE type='table' AND (name = 'agc_app' OR name 'AGC_APP')";
+ "SELECT count(1) FROM sqlite_master WHERE type='table' AND (name = 'agc_app' OR name = 'AGC_APP')";
12
13
private const string Mysql_ExistTableSql =
14
" SELECT count(1) FROM information_schema.TABLES WHERE table_schema= @schema AND (table_name ='agc_app' OR table_name='AGC_APP')";
0 commit comments