Just configured from Wine's GIT
svn path=/; revision=1
This commit is contained in:
11
tables/user_prefs.sql
Normal file
11
tables/user_prefs.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
use apidb;
|
||||
|
||||
drop table if exists user_prefs;
|
||||
|
||||
CREATE TABLE user_prefs (
|
||||
userid int not null,
|
||||
name varchar(64) not null,
|
||||
value text,
|
||||
key(userid),
|
||||
key(name)
|
||||
);
|
||||
Reference in New Issue
Block a user