diff options
author | Sergey Abramyan <sa.abramyan@gmail.com> | 2015-03-27 22:14:29 +0300 |
---|---|---|
committer | Sergey Abramyan <sa.abramyan@gmail.com> | 2015-03-27 22:14:29 +0300 |
commit | 15af88a09a019b3642aa66fda8c99925c9db28cc (patch) | |
tree | a6202f29273870cefa9f5ca65678ae60a479b609 /sql | |
parent | Add SQLite support (diff) |
Fix lite.sql and convert binary to integer
Diffstat (limited to 'sql')
-rw-r--r-- | sql/lite.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/lite.sql b/sql/lite.sql index c11f7524b..21e4df929 100644 --- a/sql/lite.sql +++ b/sql/lite.sql @@ -75,7 +75,7 @@ CREATE INDEX i_sr_user_grp ON sr_user (grp); CREATE TABLE spool ( username text NOT NULL, xml text NOT NULL, - seq SERIAL, + seq INTEGER PRIMARY KEY AUTOINCREMENT, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ); @@ -141,7 +141,7 @@ CREATE TABLE privacy_default_list ( CREATE TABLE privacy_list ( username text NOT NULL, name text NOT NULL, - id SERIAL UNIQUE, + id INTEGER PRIMARY KEY AUTOINCREMENT, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ); @@ -182,7 +182,7 @@ CREATE TABLE pubsub_node ( node text, parent text, type text, - nodeid SERIAL UNIQUE + nodeid INTEGER PRIMARY KEY AUTOINCREMENT ); CREATE INDEX i_pubsub_node_parent ON pubsub_node (parent); CREATE UNIQUE INDEX i_pubsub_node_tuple ON pubsub_node (host, node); @@ -205,7 +205,7 @@ CREATE TABLE pubsub_state ( jid text, affiliation character(1), subscriptions text, - stateid SERIAL UNIQUE + stateid INTEGER PRIMARY KEY AUTOINCREMENT ); CREATE INDEX i_pubsub_state_jid ON pubsub_state (jid); CREATE UNIQUE INDEX i_pubsub_state_tuple ON pubsub_state (nodeid, jid); |