Replaced hardcoded name "ROC CMS" for placeholder $sitename, and missing href's with $host. Renamed database script and database table for temporal users. Renamed CMS_AUTH_API AS CMS_USER_TEMP_API. Revert design to use CMS_TEMPORAL_USER and clean CMS_USER. Refactor rename cms_auth_storage_* classes to CMS_TEMPORAL_USER_STORAGE_* Added Pending Registrations to the admin menu to show the list of pending registrarions added CSS to display temporal users
14 lines
335 B
Smarty
14 lines
335 B
Smarty
|
|
DROP TABLE IF EXISTS "auth_temp_users";
|
|
CREATE TABLE `auth_temp_users` (
|
|
`uid` INTEGER PRIMARY KEY AUTO_INCREMENT NOT NULL,
|
|
`name` VARCHAR(100) NOT NULL,
|
|
`password` VARCHAR(100) NOT NULL,
|
|
`salt` VARCHAR(100) NOT NULL,
|
|
`email` VARCHAR(250) NOT NULL,
|
|
`application` TEXT NOT NULL,
|
|
CONSTRAINT `name`
|
|
UNIQUE(`name`)
|
|
);
|
|
|