bst/sql/tables/bst_kids_cost.sql
2023-10-31 00:21:50 -04:00

9 lines
139 B
SQL

DROP TABLE IF EXISTS bst_kids_cost;
CREATE TABLE bst_kids_cost
(
location_id INT NOT NULL,
kid_id INT NOT NULL,
cost DECIMAL(15, 2)
);