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/20220514223735-books-table-...

8 lines
195 B
SQL

/* Replace with your SQL commands */
CREATE TABLE products (
id SERIAL PRIMARY KEY,
title VARCHAR(150),
author VARCHAR(255),
pages integer not null,
price integer not null
);