6 lines
190 B
SQL
6 lines
190 B
SQL
-- Your SQL goes here
|
|
ALTER TABLE owned_game
|
|
ADD location_id UUID;
|
|
|
|
ALTER TABLE owned_game
|
|
ADD CONSTRAINT FK_owned_games_location_id FOREIGN KEY(location_id) REFERENCES location(id); |