This commit is contained in:
2020-06-09 19:13:23 +00:00
parent 0c577e638b
commit e067b6ff79

View File

@@ -364,11 +364,7 @@ namespace rockfishCore.Util
//schema 16 RAVEN stuff
if (currentSchema < 16)
{
// exec("CREATE TABLE trialrequest (" +
// "id INTEGER PRIMARY KEY, dtcreated integer not null, customerid integer not null, regto text not null, key text not null, code text not null, email text not null, " +
// "fetchfrom text, dtfetched integer, fetched boolean default 0 NOT NULL CHECK (fetched IN (0,1))" +
// ")");
throw new System.Exception("NOT YET!!");
exec("CREATE TABLE trialrequest (" +
"id INTEGER PRIMARY KEY, dbid text not null, companyname text not null, contactname text not null, notes text, email text not null, " +
"emailvalidated boolean default 0 NOT NULL CHECK (emailvalidated IN (0,1)) dtrequested integer, " +