Skip to content

Commit

Permalink
Merge pull request #977 from Giveth/feat/instant_boost
Browse files Browse the repository at this point in the history
fix/create instant power balance table migration sql
  • Loading branch information
aminlatifi authored May 7, 2023
2 parents cf32bd3 + d528dfc commit 9aaa34f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migration/1683189393828-CreateInstantBoostingTables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class CreateInstantBoostingTables1683189393828
`
CREATE TABLE IF NOT EXISTS public.instant_power_balance
(
id integer NOT NULL DEFAULT nextval('instant_power_balance_id_seq'::regclass),
id SERIAL NOT NULL,
"userId" integer NOT NULL,
balance double precision NOT NULL,
"chainUpdatedAt" integer NOT NULL,
Expand Down

0 comments on commit 9aaa34f

Please sign in to comment.