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.
 
 
 
 

8 lines
262 B

CREATE TABLE zerobin (
id INTEGER AUTO_INCREMENT,
created INT(11) UNSIGNED NOT NULL DEFAULT 0,
expire INT(11) UNSIGNED NOT NULL DEFAULT 0,
syntax VARCHAR(255) DEFAULT 'plaintext',
PRIMARY KEY (id),
UNIQUE KEY zerobin_uniq (created)
) ENGINE=InnoDB;