All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.store.mysql.V0_1200_1__init.sql Maven / Gradle / Ivy

There is a newer version: 0.1.0-rc6
Show newest version
drop table if exists epoch;
create table epoch
(
    number bigint       not null primary key,
    block_count         int             null,
    transaction_count   bigint          null,
    total_output        numeric(38)     null,
    total_fees          bigint          null,
    start_time          bigint          null,
    end_time            bigint          null,
    max_slot            bigint          null,
    create_datetime     timestamp,
    update_datetime     timestamp
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy