Database features. Development has started.

This commit is contained in:
Alexandr Bogomyakov
2018-05-17 20:07:50 +03:00
parent 7341eaaa4e
commit 506978ea76
3 changed files with 147 additions and 0 deletions

12
scheme.sql Normal file
View 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;