7 lines
314 B
MySQL
7 lines
314 B
MySQL
|
|
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;
|