Created
October 14, 2021 19:17
-
-
Save meanother/bcaf7ce8afd6f76dd1434110c6a307d7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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