6 lines
165 B
SQL
6 lines
165 B
SQL
-- P5-7107 Add flyers territory foreign key
|
|
|
|
ALTER TABLE flyers ADD CONSTRAINT territory_fkey
|
|
FOREIGN KEY (territory) REFERENCES "i18n-territories" (iso2char);
|
|
|