You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Shelf/migrations/sqls/20220518182209-shelf-up.sql

6 lines
152 B
SQL

/* Replace with your SQL commands */
CREATE TABLE products (
id SERIAL PRIMARY KEY,
name VARCHAR(250) NOT NULL,
price INTEGER NOT NULL
);