remove not null constraints on location data
This commit is contained in:
parent
b751ad7caf
commit
b635d3799c
3
manifest
3
manifest
|
|
@ -22,4 +22,5 @@ music_session_all_params.sql
|
|||
as_musician.sql
|
||||
bootstrap_users_v3.sql
|
||||
update_user_band_fields.sql
|
||||
add_recording_creator_id.sql
|
||||
add_recording_creator_id.sql
|
||||
make_location_nullable.sql
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
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;
|
||||
Loading…
Reference in New Issue