mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 14:04:08 +01:00
6 lines
105 B
SQL
6 lines
105 B
SQL
-- +goose Up
|
|
CREATE TABLE inventory_status (
|
|
id SERIAL PRIMARY KEY,
|
|
name TEXT NOT NULL UNIQUE
|
|
);
|