Skip to content

Commit

Permalink
Merge pull request #130 from Brentdbr/ncafe
Browse files Browse the repository at this point in the history
modified NetcafeDefaults to contain the retail Netcafe point rewards.
  • Loading branch information
sekaiwish authored Oct 20, 2024
2 parents 2215afc + a4fa55f commit 366ec83
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions schemas/bundled-schema/NetcafeDefaults.sql
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
BEGIN;

TRUNCATE public.cafebonus;

INSERT INTO public.cafebonus (time_req, item_type, item_id, quantity)
VALUES
(1800, 17, 0, 250),
(3600, 17, 0, 500),
(7200, 17, 0, 1000),
(10800, 17, 0, 1500),
(18000, 17, 0, 1750),
(28800, 17, 0, 3000),
(43200, 17, 0, 4000);
(1800, 17, 0, 50),
(3600, 17, 0, 100),
(7200, 17, 0, 200),
(10800, 17, 0, 300),
(18000, 17, 0, 350),
(28800, 17, 0, 500),
(43200, 17, 0, 500);

END;

0 comments on commit 366ec83

Please sign in to comment.