You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table table1 (
field text not null,
field2 text not null,
primary key(field, field2)
);
create table if not exists table2 (
id int generated always as identity primary key,
field text,
field2 text,
foreign key (field, field2) references table1(field, field2)
);
using the web interface.
The text was updated successfully, but these errors were encountered:
Duplicate of #142 but for Postgres.
Example Postgres Import:
using the web interface.
The text was updated successfully, but these errors were encountered: