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