All checks were successful
Build / build (push) Successful in 1m30s
9 lines
158 B
SQL
9 lines
158 B
SQL
create table info_hdd (
|
|
asset integer not null unique,
|
|
capacity integer,
|
|
type text,
|
|
form_factor text,
|
|
connection text,
|
|
rpm integer
|
|
);
|