jam-cloud/db/up/make_location_nullable.sql

7 lines
314 B
MySQL
Raw Permalink Normal View History

alter table users alter column city drop not null;
alter table users alter column state drop not null;
alter table users alter column country drop not null;
alter table bands alter column city drop not null;
alter table bands alter column state drop not null;
alter table bands alter column country drop not null;