mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 14:04:08 +01:00
7 lines
175 B
SQL
7 lines
175 B
SQL
-- +goose Up
|
|
-- Insert default statuses into the inventory_status table
|
|
INSERT INTO inventory_status (name)
|
|
VALUES
|
|
('In Stock'),
|
|
('Low Stock'),
|
|
('Out Of Stock'); |