diff --git a/.gitignore b/.gitignore index e14b93f..7f4adb8 100644 --- a/.gitignore +++ b/.gitignore @@ -38,4 +38,4 @@ next-env.d.ts # vscode .vscode -/database.db \ No newline at end of file +database.db \ No newline at end of file diff --git a/database.db b/database.db deleted file mode 100644 index 189797d..0000000 Binary files a/database.db and /dev/null differ diff --git a/sql/data.sql b/sql/data.sql index 2504657..76165f4 100644 --- a/sql/data.sql +++ b/sql/data.sql @@ -33,10 +33,9 @@ INSERT INTO inventory_item(user_id, store_item_id) VALUES (1, 'item1'), (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 - (1, 1, 1, 5, 50), - (1, 3, 2, 5, 50); - -INSERT INTO claim_event(staking_event_id, claim_amount) VALUES - (2, 50); +-- INSERT INTO claim_event(staking_event_id, claim_amount) VALUES +-- (2, 50);