commit of work prior to forking the gatecounter stuff
This commit is contained in:
17
sql/db-init.sql
Normal file
17
sql/db-init.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
create table if not exists PIRSTATS (
|
||||
datetime DATETIME not NULL,
|
||||
gatecount INT,
|
||||
PRIMARY KEY (datetime)
|
||||
);
|
||||
|
||||
create table if not exists ULTRASTATS (
|
||||
datetime DATETIME not NULL,
|
||||
gatecount INT,
|
||||
PRIMARY KEY (datetime)
|
||||
);
|
||||
|
||||
create table if not exists LDRSTATS (
|
||||
datetime DATETIME not NULL,
|
||||
gatecount INT,
|
||||
PRIMARY KEY (datetime)
|
||||
);
|
||||
Reference in New Issue
Block a user