Skip to content

Instantly share code, notes, and snippets.

@meanother
Created October 14, 2021 19:17
Show Gist options
  • Save meanother/bcaf7ce8afd6f76dd1434110c6a307d7 to your computer and use it in GitHub Desktop.
Save meanother/bcaf7ce8afd6f76dd1434110c6a307d7 to your computer and use it in GitHub Desktop.
create table if not exists home.dt_banki_responses (
id int primary key,
link varchar(255) not null,
title varchar(255) not null,
city varchar(255) not null,
bank_name varchar(255) not null,
score integer null,
status varchar(100) null,
username varchar(100) null,
create_dt timestamptz not null,
comments integer null,
content text not null,
bank_answer text null,
bank_answer_date timestamptz null,
admin_answer text null,
admin_answer_date timestamptz null,
parse_dt date not null
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment