mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
8 lines
320 B
SQL
8 lines
320 B
SQL
CREATE TABLE user_properties(
|
|
up_user INTEGER NULL REFERENCES mwuser(user_id) ON DELETE CASCADE,
|
|
up_property TEXT NOT NULL,
|
|
up_value TEXT
|
|
);
|
|
|
|
CREATE UNIQUE INDEX user_properties_user_property on user_properties (up_user,up_property);
|
|
CREATE INDEX user_properties_property on user_properties (up_property);
|