Added user profile system to the core module.
Moved /user/{uid} from auth module to core module.
Added possibility to add html before and after a cms form. (useful to add a form before or after, as nested form are forbidden).
Now theme can be installed using roc install command.
7 lines
166 B
SQL
7 lines
166 B
SQL
CREATE TABLE user_profiles(
|
|
`uid` INTEGER NOT NULL CHECK("uid">=0),
|
|
`key` VARCHAR(255) NOT NULL.
|
|
`value` TEXT.
|
|
CONSTRAINT PK_uid_key PRIMARY KEY (uid,key)
|
|
);
|