You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(con.QueryFirstOrDefault<int>(" Select count(1) from information_schema.tables where table_name ='httpreports.requestinfo'; ")==0)
157
+
if(con.QueryFirstOrDefault<int>(" Select count(1) from information_schema.tables where table_name ='RequestInfo' and table_schema = 'HttpReports'; ")==0)
158
158
{
159
159
con.Execute(@"
160
-
CREATE TABLE `Requestinfo` (
160
+
CREATE TABLE `RequestInfo` (
161
161
`Id` int(11) NOT NULL auto_increment,
162
162
`Node` varchar(50) default NULL,
163
163
`Route` varchar(50) default NULL,
@@ -174,7 +174,7 @@ PRIMARY KEY (`Id`)
174
174
175
175
}
176
176
177
-
if(con.QueryFirstOrDefault<int>("Select count(1) from information_schema.tables where table_name ='httpreports.job';")==0)
177
+
if(con.QueryFirstOrDefault<int>("Select count(1) from information_schema.tables where table_name ='Job' and table_schema = 'HttpReports'; ")==0)
0 commit comments