27 lines
537 B
SQL
27 lines
537 B
SQL
-- P5-6098: add market_locales table
|
|
|
|
drop table if exists market_locales;
|
|
|
|
|
|
create table market_locales (
|
|
id serial,
|
|
market_id integer not null,
|
|
locale_id integer not null
|
|
);
|
|
|
|
|
|
alter table market_locales
|
|
add constraint market_fkey
|
|
foreign key (market_id)
|
|
references markets(id) match simple;
|
|
|
|
|
|
alter table market_locales
|
|
add constraint locale_fkey
|
|
foreign key (locale_id)
|
|
references locales(id) match simple;
|
|
|
|
|
|
insert into market_locales (market_id, locale_id)
|
|
select id, locale_id from markets;
|