IP-Molchan-job_interview/db_schema.sql

8 lines
236 B
MySQL
Raw Normal View History

2025-01-29 21:28:17 +03:00
CREATE TABLE IF NOT EXISTS warehouses (
name VARCHAR(64) PRIMARY KEY,
box_delivery_and_storage_expr INTEGER,
box_delivery_base INTEGER,
box_delivery_liter INTEGER,
box_storage_base REAL,
box_storage_liter REAL
);