File: beta.sql

package info (click to toggle)
librose-db-object-perl 1%3A0.798-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,380 kB
  • sloc: perl: 79,335; sql: 28; makefile: 7
file content (7 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
DROP TABLE IF EXISTS members;    

CREATE TABLE members      (    
    id      INT UNSIGNED    NOT NULL AUTO_INCREMENT PRIMARY KEY,
    email   VARCHAR(255)    NOT NULL,
    UNIQUE  ( email )
) TYPE = InnoDB;