34 lines
542 B
SQL
34 lines
542 B
SQL
-- 1523250939 DOWN add-more-vendor-fields
|
|
alter table vendors
|
|
drop column address1;
|
|
|
|
alter table vendors
|
|
drop column address2;
|
|
|
|
alter table vendors
|
|
drop column city;
|
|
|
|
alter table vendors
|
|
drop column state;
|
|
|
|
alter table vendors
|
|
drop column zip;
|
|
|
|
alter table vendors
|
|
drop column primary_contact;
|
|
|
|
alter table vendors
|
|
drop column primary_email;
|
|
|
|
alter table vendors
|
|
drop column primary_phone;
|
|
|
|
alter table vendors
|
|
drop column secondary_contact;
|
|
|
|
alter table vendors
|
|
drop column secondary_email;
|
|
|
|
alter table vendors
|
|
drop column secondary_phone;
|