You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
343 B

DROP TABLE IF EXISTS 'people';
CREATE TABLE 'people' (
'id' INTEGER PRIMARY KEY ASC AUTOINCREMENT,
'name' VARCHAR(255),
'email' VARCHAR(255)
);
DROP TABLE IF EXISTS 'users';
CREATE TABLE 'users' (
'id' INTEGER PRIMARY KEY ASC AUTOINCREMENT,
'username' VARCHAR(255) NOT NULL,
'hashed_password' VARCHAR(40) NOT NULL
);