blob: ef7d8700bedef96577189edaae61f8711fbefb9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
drop table profiles;
CREATE TABLE profiles (
profileid bigint unsigned DEFAULT '0' NOT NULL,
userid bigint unsigned DEFAULT '0' NOT NULL,
idx varchar(96) DEFAULT '' NOT NULL,
idx2 bigint unsigned DEFAULT '0' NOT NULL,
value_id bigint unsigned DEFAULT '0' NOT NULL,
value_int integer DEFAULT '0' NOT NULL,
value_str varchar(255) DEFAULT '' NOT NULL,
source varchar(96) DEFAULT '' NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (profileid)
) type=InnoDB;
CREATE INDEX profiles_1 on profiles (userid,idx,idx2);
|