6 lines
173 B
MySQL
6 lines
173 B
MySQL
|
create table trades (
|
||
|
id serial primary key not null,
|
||
|
character1 integer references character (id) not null,
|
||
|
character2 integer references character (id) not null,
|
||
|
);
|