forked from External/ergo
User persistence to sqlite.
This commit is contained in:
parent
48ca57c43d
commit
ccdf7779a5
12 changed files with 172 additions and 115 deletions
16
sql/drop.sql
16
sql/drop.sql
|
|
@ -1,10 +1,10 @@
|
|||
DROP INDEX user_id_channel_id
|
||||
DROP TABLE user_channel
|
||||
DROP INDEX IF EXISTS index_user_id_channel_id;
|
||||
DROP TABLE IF EXISTS user_channel;
|
||||
|
||||
DROP INDEX channel_name
|
||||
DROP INDEX channel_id
|
||||
DROP TABLE channel
|
||||
DROP INDEX IF EXISTS index_channel_name;
|
||||
DROP INDEX IF EXISTS index_channel_id;
|
||||
DROP TABLE IF EXISTS channel;
|
||||
|
||||
DROP INDEX user_nick
|
||||
DROP INDEX user_id
|
||||
DROP TABLE user
|
||||
DROP INDEX IF EXISTS index_user_nick;
|
||||
DROP INDEX IF EXISTS index_user_id;
|
||||
DROP TABLE IF EXISTS user;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue