| create table if not exists providers ( | |
| id bigserial primary key, | |
| name text not null, | |
| type text not null, | |
| category text not null, | |
| max_amount text, | |
| interest text, | |
| note text, | |
| chip text[], | |
| source_url text, | |
| updated_at timestamptz default now() | |
| ); |
| create table if not exists providers ( | |
| id bigserial primary key, | |
| name text not null, | |
| type text not null, | |
| category text not null, | |
| max_amount text, | |
| interest text, | |
| note text, | |
| chip text[], | |
| source_url text, | |
| updated_at timestamptz default now() | |
| ); |