Browse Source

+ conf/schema.mysql.sql

master
Alex 'AdUser' Z 6 years ago
parent
commit
ae312dfbba
  1. 8
      conf/schema.mysql.sql

8
conf/schema.mysql.sql

@ -0,0 +1,8 @@
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;
Loading…
Cancel
Save