Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
type: bulk
args:
- type: run_sql
sql: |
CREATE TABLE person (
id SERIAL PRIMARY KEY,
name TEXT,
created TIMESTAMPTZ
);
- type: track_table
schema: public
name: person