Delete database and comment out staking_event

This commit is contained in:
Joseph Ferano 2023-03-22 11:07:22 +07:00
parent 6b7cf87fcf
commit 9df27aea2d
3 changed files with 6 additions and 7 deletions

2
.gitignore vendored
View File

@ -38,4 +38,4 @@ next-env.d.ts
# vscode # vscode
.vscode .vscode
/database.db database.db

Binary file not shown.

View File

@ -33,10 +33,9 @@ INSERT INTO inventory_item(user_id, store_item_id) VALUES
(1, 'item1'), (1, 'item1'),
(1, 'item2'); (1, 'item2');
-- INSERT INTO staking_event(user_id, well_id, inventory_item_id, duration_in_mins, stake_amount) VALUES
-- (1, 1, 1, 5, 50),
-- (1, 3, 2, 5, 50);
INSERT INTO staking_event(user_id, well_id, inventory_item_id, duration_in_mins, stake_amount) VALUES -- INSERT INTO claim_event(staking_event_id, claim_amount) VALUES
(1, 1, 1, 5, 50), -- (2, 50);
(1, 3, 2, 5, 50);
INSERT INTO claim_event(staking_event_id, claim_amount) VALUES
(2, 50);