repo.or.cz
/
NewAppDB.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
objectManager: Fix lower-case letter in 'email Text'
[NewAppDB.git]
/
tables
/
user_prefs.sql
blob
d3b1875531f618acef2c8b910d7f6130b15d6c9d
1
use apidb;
2
3
drop table if exists user_prefs;
4
5
CREATE TABLE user_prefs (
6
userid int not null,
7
name varchar(64) not null,
8
value text,
9
key(userid),
10
key(name)
11
);