Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Metadata fetcher #3

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

verdigos
Copy link
Collaborator

create table address_metadata
(
    address     varchar not null,
    type        varchar not null,
    valid       boolean default true,
    name        varchar,
    description varchar,
    extra       jsonb,
    symbol      varchar,
    image       varchar,
    updated_at  bigint,
    constraint address_metadata_pk
        primary key (address, type)
);
create table background_tasks
(
    id         bigint generated always as identity
        constraint background_tasks_pk
            primary key,
    type       varchar,
    status     varchar,
    retries    integer default 0 not null,
    retry_at   bigint,
    started_at bigint,
    data       jsonb,
    error      varchar
);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants