From 484fea42e792b78f77fac89143cc6ac8a3045318 Mon Sep 17 00:00:00 2001 From: Corby Krick Date: Sun, 21 Apr 2013 10:32:09 -0700 Subject: [PATCH] Making the contacts table name all uppercase because the name is uppercase when HRD Logbook creates it. Also removing lotw_user_name and lotw_user_password from the users table, because we add it in later migrations via the migration scripts. --- install/assets/install.sql | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/install/assets/install.sql b/install/assets/install.sql index de7ec395..a1b254e5 100755 --- a/install/assets/install.sql +++ b/install/assets/install.sql @@ -3563,10 +3563,10 @@ CREATE TABLE IF NOT EXISTS `notes` ( -- -------------------------------------------------------- -- --- Table structure for table `table_hrd_contacts_v01` +-- Table structure for table `TABLE_HRD_CONTACTS_V01` -- -CREATE TABLE IF NOT EXISTS `table_hrd_contacts_v01` ( +CREATE TABLE IF NOT EXISTS `TABLE_HRD_CONTACTS_V01` ( `COL_PRIMARY_KEY` int(11) NOT NULL AUTO_INCREMENT, `COL_ADDRESS` varchar(255) DEFAULT NULL, `COL_AGE` int(11) DEFAULT NULL, @@ -3815,8 +3815,6 @@ 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`)