maple-v206/sql/6 - beautyalbum.sql

9 lines
202 B
SQL

create table beautyalbuminventory (
id bigint not null auto_increment,
styleid int,
slotid int,
charid int,
primary key (id),
foreign key (charid) references characters(id)
);