You've already forked reloading-manager
20 lines
569 B
SQL
20 lines
569 B
SQL
create table bullets
|
|
(
|
|
id uuid primary key,
|
|
name varchar(255) not null,
|
|
weight int not null,
|
|
diameter int not null,
|
|
meta json,
|
|
photo bytea,
|
|
manufacturer_id uuid not null,
|
|
created_at timestamp default NOW() not null
|
|
);
|
|
|
|
|
|
create table manufacturers
|
|
(
|
|
id uuid primary key ,
|
|
name varchar(255) not null,
|
|
url varchar(255),
|
|
created_at timestamp default NOW() not null
|
|
); |