2018-09-18 09:21:57 +03:00
|
|
|
type: bulk
|
|
|
|
args:
|
|
|
|
|
2018-10-04 15:44:15 +03:00
|
|
|
#Author table
|
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
create table author(
|
|
|
|
id serial primary key,
|
|
|
|
name text unique
|
|
|
|
);
|
|
|
|
- type: track_table
|
|
|
|
args:
|
|
|
|
schema: public
|
|
|
|
name: author
|
|
|
|
|
2018-09-18 09:21:57 +03:00
|
|
|
#Create resident table
|
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
CREATE TABLE resident (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
name TEXT NOT NULL,
|
|
|
|
age INTEGER NOT NULL
|
|
|
|
)
|
|
|
|
- type: track_table
|
|
|
|
args:
|
|
|
|
schema: public
|
|
|
|
name: resident
|
|
|
|
|
|
|
|
#Create address table
|
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
CREATE TABLE address (
|
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
door_no TEXT NOT NULL,
|
|
|
|
street TEXT NOT NULL,
|
|
|
|
city TEXT NOT NULL,
|
|
|
|
resident_id INTEGER REFERENCES resident(id)
|
|
|
|
)
|
|
|
|
- type: track_table
|
|
|
|
args:
|
|
|
|
schema: public
|
|
|
|
name: address
|
|
|
|
|