Skip to content

Commit

Permalink
chore: order ff by asc
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed May 26, 2024
1 parent 552cfb4 commit e0b54eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/routes/internal/features/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export const post: Handler = async (req, res) => {
try {
const feature = await heyPg.query(
`
INSERT INTO "Feature" ("key")
VALUES ($1)
INSERT INTO "Feature" ("key", "priority")
VALUES ($1, 1000)
RETURNING *;
`,
[key]
Expand Down

0 comments on commit e0b54eb

Please sign in to comment.