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/sql/20220222050518-books-table-up

8 lines
146 B
Plaintext

CREATE TABLE books (
id SERIAL PRIMARY KEY,
title VARCHAR(150),
author VARCHAR(255),
price integer not null,
summary text
);