Skip to content

Commit

Permalink
Add dashboard wallet users table C-3497 (#6933)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikki Kang <kangaroo233@gmail.com>
  • Loading branch information
nicoback2 and nicoback authored Dec 14, 2023
1 parent 3d8a5cd commit 38670b9
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
begin;

CREATE TABLE IF NOT EXISTS dashboard_wallet_users (
wallet varchar not null,
user_id integer not null,
is_delete boolean not null default false,
updated_at timestamp not null,
created_at timestamp not null,
blockhash varchar references blocks(blockhash),
blocknumber integer references blocks(number),
txhash varchar not null,
primary key (user_id, wallet)
);

commit;

0 comments on commit 38670b9

Please sign in to comment.