final edits

This commit is contained in:
2018-12-27 05:16:24 +04:00
parent 273afd18d0
commit da6260be34
8 changed files with 1443 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
CREATE TABLE web_user
(
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
name text NOT NULL,
email text NOT NULL
);
INSERT INTO web_user (id, email, name) VALUES (63, 'vasya@abra.me', 'Вася');
INSERT INTO web_user (id, email, name) VALUES (64, 'petya@abra.me', 'Петя');
INSERT INTO web_user (id, email, name) VALUES (67, 'vgrinina@gmail.com', 'Ника');