6 lines
186 B
MySQL
Raw Normal View History

2022-07-18 21:03:07 -06:00
create table trades (
id serial primary key not null,
2023-01-28 00:56:31 -07:00
character1 integer references player_character (id) not null,
character2 integer references player_character (id) not null
2022-07-18 21:03:07 -06:00
);