This commit is contained in:
nora 2021-07-02 16:57:04 +02:00
parent 90ed6e1533
commit b9b7c93572
8 changed files with 503 additions and 92 deletions

View file

@ -0,0 +1,3 @@
-- This file should undo anything in `up.sql`
DROP TABLE person;

View file

@ -0,0 +1,7 @@
-- Your SQL goes here
CREATE TABLE person (
id CHAR(4) NOT NULL PRIMARY KEY ,
name VARCHAR(45) NOT NULL,
age INT NOT NULL DEFAULT 0
);