[FileBackend] Gave doQuickOperations() some wrapper methods just like doOperations().
[mediawiki.git] / maintenance / ibm_db2 / patch-user_properties.sql
blob72dcd7926c791cbfc81f8d9dcc6e223bf79afcd5
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