From 04846ae3626a9fb3296cd7051e8fcbf8d677b77f Mon Sep 17 00:00:00 2001 From: Jonathan Rosenbaum Date: Thu, 3 Aug 2017 03:29:35 +0000 Subject: [PATCH] Uses a new type for the volunteer column. --- sql/populate.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/populate.sql b/sql/populate.sql index 76a0790..05537a0 100644 --- a/sql/populate.sql +++ b/sql/populate.sql @@ -77,7 +77,7 @@ DELETE FROM shop_hours; DELETE FROM contacts; ALTER TABLE contacts AUTO_INCREMENT = 1; ALTER TABLE contacts ADD waiver tinyint(1) NOT NULL DEFAULT '0'; -ALTER TABLE contacts ADD volunteer varchar(15) NOT NULL DEFAULT ''; +ALTER TABLE contacts ADD volunteer longblob NOT NULL; INSERT INTO contacts ( contact_id, first_name, middle_initial, last_name, email, phone, address1, address2, city, state, country, receive_newsletter, date_created,