mirror of
https://github.com/djhackersdev/minime.git
synced 2026-08-20 01:14:08 -05:00
wip fix settings pack width
This commit is contained in:
@@ -99,7 +99,7 @@ create table "idz"."settings" (
|
||||
references "idz"."profile"("id")
|
||||
on delete cascade,
|
||||
"music" smallint not null,
|
||||
"pack" integer not null,
|
||||
"pack" bigint not null,
|
||||
"paper_cup" smallint not null, -- Not a boolean, oddly enough
|
||||
"gauges" integer not null
|
||||
);
|
||||
|
||||
@@ -23,7 +23,7 @@ export class SqlSettingsRepository implements FacetRepository<Settings> {
|
||||
|
||||
return {
|
||||
music: row.music,
|
||||
pack: row.pack,
|
||||
pack: parseInt(row.pack, 10),
|
||||
paperCup: row.paper_cup,
|
||||
gauges: row.gauges,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user