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.

pull/129/head
Corby Krick 2013-02-16 14:21:13 -06:00
rodzic 1879853ac8
commit 5b56e9575e
1 zmienionych plików z 2 dodań i 0 usunięć

2
install/assets/install.sql 100644 → 100755
Wyświetl plik

@ -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`)