Skip to content

Commit

Permalink
update.
Browse files Browse the repository at this point in the history
  • Loading branch information
chinyuchan committed Jun 30, 2024
1 parent c112f80 commit 1a03817
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions module/migrations/20220218070358_create_tables.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,15 @@ create table native_addrs(
address varchar(64) not null,
timestamp bigint not null
);
create index idx_ntvaddr on native_addrs(address);

create table evm_addrs(
id bigserial primary key,
tx varchar(64) not null,
address varchar(64) not null,
timestamp bigint not null
);
create index idx_evmaddr on evm_addrs(address);

create table assets(
asset varchar(64) not null,
Expand Down

0 comments on commit 1a03817

Please sign in to comment.