You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keanu Dölle edited this page Jan 3, 2018
·
9 revisions
Table users
CREATETABLEusers
(
id INT AUTO_INCREMENT
PRIMARY KEY,
uname VARCHAR(45) NULL,
pwhash VARCHAR(255) NULL,
email VARCHAR(255) NOT NULL,
lastlogin VARCHAR(10) NULL,
pwchange VARCHAR(10) NULL
)
ENGINE = InnoDB;
Table snippets
CREATETABLEsnippets
(
id INT AUTO_INCREMENT
PRIMARY KEY,
title VARCHAR(150) NOT NULL,
description VARCHAR(250) NULL,
language VARCHAR(20) NOT NULL,
tags VARCHAR(250) NULL,
author_id INTNULL,
author_name VARCHAR(45) NULL,
status TINYINT NULL,
dateVARCHAR(10) NULL
)
ENGINE = InnoDB;