mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-22 00:07:14 +00:00
Adding two fields to the users table for LoTW username and password. We'll need an upgrade script to alter the table for existing installations.
This commit is contained in:
parent
1879853ac8
commit
5b56e9575e
2
install/assets/install.sql
Normal file → Executable file
2
install/assets/install.sql
Normal file → Executable file
@ -3815,6 +3815,8 @@ CREATE TABLE IF NOT EXISTS `users` (
|
||||
`user_locator` varchar(255) NOT NULL,
|
||||
`user_firstname` varchar(255) NOT NULL,
|
||||
`user_lastname` varchar(255) NOT NULL,
|
||||
`user_lotw_name` varchar(32) NULL COMMENT 'LoTW Username',
|
||||
`user_lotw_password` varchar(64) NULL COMMENT 'LoTW Password',
|
||||
PRIMARY KEY (`user_id`),
|
||||
UNIQUE KEY `user_name` (`user_name`),
|
||||
UNIQUE KEY `user_email` (`user_email`)
|
||||
|
Loading…
Reference in New Issue
Block a user