19 lines
527 B
SQL
19 lines
527 B
SQL
use apidb;
|
|
|
|
drop table if exists distributions;
|
|
|
|
/*
|
|
* Distributions table.
|
|
*/
|
|
create table distributions (
|
|
distributionId int not null auto_increment,
|
|
name varchar(255) default NULL,
|
|
url varchar(255) default NULL,
|
|
submitTime datetime NOT NULL,
|
|
submitterId int(11) NOT NULL default '0',
|
|
state enum('accepted','queued','deleted') NOT NULL default 'accepted',
|
|
key(distributionId),
|
|
index(name)
|
|
);
|
|
|