Shelf/migrations/sqls/20220519015830-shelf-up.sql

5 lines
115 B
MySQL
Raw Normal View History

2022-05-18 19:55:31 +00:00
CREATE TABLE products (
id SERIAL PRIMARY KEY,
name VARCHAR(250) NOT NULL,
price INTEGER NOT NULL
);