1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-23 01:03:23 -05:00

Uses a new type for the volunteer column.

This commit is contained in:
Jonathan Rosenbaum 2017-08-03 03:29:35 +00:00
parent d0e88bac58
commit 04846ae362

View File

@ -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,