tree concurency issue fix
[csql.git] / cachetable.sql
blob07f0d5e89d9ed17e0fa547d27ad0812d514fd7b2
1 #MySQL
2 Command
3 -------
4 $mysql -u root -p (or)
5 $mysql -u root -p <filename
8 Statements
9 ----------
10 create table csql_log_int(tablename char(64), pkid int, operation int,cacheid int, id int not null unique auto_increment)engine='innodb';
12 #POSTGRES
13 Command
14 -------
15 $psql test (or)
16 $psql test -f filename
18 Statements
19 ----------
20 create table csql_log_int(tablename varchar(64), pkid int, operation int,cacheid int);
21 alter table csql_log_int add id serial;