mirror of
https://github.com/Noratrieb/karlheinz.git
synced 2026-01-16 07:25:01 +01:00
actions
This commit is contained in:
parent
90ed6e1533
commit
b9b7c93572
8 changed files with 503 additions and 92 deletions
3
migrations/2021-07-02-125712_hugo/down.sql
Normal file
3
migrations/2021-07-02-125712_hugo/down.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-- This file should undo anything in `up.sql`
|
||||
|
||||
DROP TABLE person;
|
||||
7
migrations/2021-07-02-125712_hugo/up.sql
Normal file
7
migrations/2021-07-02-125712_hugo/up.sql
Normal 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
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue