Just configured from Wine's GIT

svn path=/; revision=1
This commit is contained in:
2009-10-09 00:08:02 +00:00
commit 2782475c4f
3000 changed files with 59244 additions and 0 deletions

18
tables/distributions.sql Normal file
View File

@@ -0,0 +1,18 @@
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)
);