Merge "Misc follow-ups to I2fc3966e (a161c5e)"
[lhc/web/wiklou.git] / maintenance / ibm_db2 / patch-user_properties.sql
1 CREATE TABLE user_properties (
2 -- Foreign key to user.user_id
3 up_user BIGINT NOT NULL,
4
5 -- Name of the option being saved. This is indexed for bulk lookup.
6 up_property VARCHAR(32) FOR BIT DATA NOT NULL,
7
8 -- Property value as a string.
9 up_value CLOB(64K) INLINE LENGTH 4096
10 );