Files
pcinv/migrations/2_add_harddrives.sql
Sebastiaan de Schaetzen ff1d95edab
All checks were successful
Build / build (push) Successful in 1m30s
Add ability to add hard drives
2025-03-24 16:15:52 +01:00

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
);