This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/tables/distributions.sql
Alexander Nicolaysen Sørnes 8c7bd3a5e9 Add initial un-delete support
2007-12-18 20:17:06 -05:00

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)
);