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

14
tables/error_log.sql Normal file
View File

@@ -0,0 +1,14 @@
use apidb;
drop table if exists error_log;
create table error_log (
id int not null auto_increment,
submitTime datetime,
userid int not null default '0',
type enum('sql_error', 'general_error'),
log_text text,
request_text text,
deleted bool,
key(id)
);