aboutsummaryrefslogtreecommitdiff
path: root/migrations/2020-11-16-133516_create_products_table/up.sql
blob: 829c5be3b5b5473d7c1a57dfb8dc75078d191cf5 (plain)
1
2
3
4
5
6
7
8
-- Your SQL goes here
CREATE TABLE product (
    id INTEGER PRIMARY KEY AUTO_INCREMENT,
    name VARCHAR(255) NOT NULL,
    kind VARCHAR(255),
    price FLOAT NOT NULL,
    description VARCHAR(255)
)