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:
Corby Krick 2013-02-16 14:21:13 -06:00
parent 1879853ac8
commit 5b56e9575e

2
install/assets/install.sql Normal file → Executable file
View 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`)