6 lines
173 B
MySQL
Raw Normal View History

2022-07-18 21:03:07 -06:00
create table trades (
id serial primary key not null,
character1 integer references character (id) not null,
character2 integer references character (id) not null,
);