mirror of
https://github.com/house-of-vanity/fesmoo_perdoliq.git
synced 2025-07-07 14:04:06 +00:00
Database features. Development has started.
This commit is contained in:
12
scheme.sql
Normal file
12
scheme.sql
Normal file
@ -0,0 +1,12 @@
|
||||
BEGIN TRANSACTION;
|
||||
-- DROP TABLE IF EXISTS `user`;
|
||||
CREATE TABLE IF NOT EXISTS `user` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`user_id` TEXT NOT NULL,
|
||||
`user_name` TEXT NOT NULL,
|
||||
`site_name` TEXT,
|
||||
`site_user` TEXT,
|
||||
`site_pass` TEXT,
|
||||
`date` INTEGER NOT NULL
|
||||
);
|
||||
COMMIT;
|
Reference in New Issue
Block a user