Add missing tables schemas
darcs-hash:20071204165646-86b55-02d657843eff97f35dafa213fc9e6634e4a28583.gz
This commit is contained in:
14
sqlobject_history/2007-11-05/Account_sqlite.sql
Normal file
14
sqlobject_history/2007-11-05/Account_sqlite.sql
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
-- Exported definition from 2007-11-05T19:02:34
|
||||||
|
-- Class jcl.model.account.Account
|
||||||
|
-- Database: sqlite
|
||||||
|
CREATE TABLE account (
|
||||||
|
id INTEGER PRIMARY KEY,
|
||||||
|
name TEXT,
|
||||||
|
jid TEXT,
|
||||||
|
status TEXT,
|
||||||
|
in_error TINYINT,
|
||||||
|
enabled TINYINT,
|
||||||
|
lastlogin TIMESTAMP,
|
||||||
|
user_id INT CONSTRAINT user_id_exists REFERENCES user(id) ,
|
||||||
|
child_name VARCHAR(255)
|
||||||
|
)
|
||||||
10
sqlobject_history/2007-11-05/LegacyJID_sqlite.sql
Normal file
10
sqlobject_history/2007-11-05/LegacyJID_sqlite.sql
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
-- Exported definition from 2007-11-05T19:02:34
|
||||||
|
-- Class jcl.model.account.LegacyJID
|
||||||
|
-- Database: sqlite
|
||||||
|
CREATE TABLE legacy_j_id (
|
||||||
|
id INTEGER PRIMARY KEY,
|
||||||
|
legacy_address TEXT,
|
||||||
|
jid TEXT,
|
||||||
|
account_id INT CONSTRAINT account_id_exists REFERENCES account(id) ,
|
||||||
|
child_name VARCHAR(255)
|
||||||
|
)
|
||||||
13
sqlobject_history/2007-11-05/PresenceAccount_sqlite.sql
Normal file
13
sqlobject_history/2007-11-05/PresenceAccount_sqlite.sql
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
-- Exported definition from 2007-11-05T19:02:34
|
||||||
|
-- Class jcl.model.account.PresenceAccount
|
||||||
|
-- Database: sqlite
|
||||||
|
CREATE TABLE presence_account (
|
||||||
|
id INTEGER PRIMARY KEY,
|
||||||
|
chat_action INT,
|
||||||
|
online_action INT,
|
||||||
|
away_action INT,
|
||||||
|
xa_action INT,
|
||||||
|
dnd_action INT,
|
||||||
|
offline_action INT,
|
||||||
|
child_name VARCHAR(255)
|
||||||
|
)
|
||||||
9
sqlobject_history/2007-11-05/User_sqlite.sql
Normal file
9
sqlobject_history/2007-11-05/User_sqlite.sql
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
-- Exported definition from 2007-11-05T19:02:34
|
||||||
|
-- Class jcl.model.account.User
|
||||||
|
-- Database: sqlite
|
||||||
|
CREATE TABLE user (
|
||||||
|
id INTEGER PRIMARY KEY,
|
||||||
|
jid TEXT,
|
||||||
|
has_received_motd TINYINT,
|
||||||
|
child_name VARCHAR(255)
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user