Skip to content

Commit

Permalink
fixed migration file name issue (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
armintalaie authored Apr 9, 2024
1 parent 9c8cafa commit 2d0f331
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: |
echo "${{ secrets.ENV_FILE }}" > .env
echo "Running migrations"
npm run db:setup
npm run db:up
deploy-lamda:
runs-on: ubuntu-latest
steps:
Expand Down
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions src/users/queryUsers.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@

import { Database, PersonTable, getDatabase } from '../util/db';
import { IPersonQuery, ORFilterQuery } from '../util/types/general';
import { APIResponse, SuccessResponse } from '../util/middleware/response';
import { PaginationHelper, ResponseMetaTagger } from '../util/middleware/paginationHelper';
import {
PaginationHelper,
ResponseMetaTagger,
} from '../util/middleware/paginationHelper';
import { expressionBuilder } from 'kysely';
import { Authorizer } from '../util/middleware/authorizer';
import { InputValidator } from '../util/middleware/inputValidator';
Expand Down

0 comments on commit 2d0f331

Please sign in to comment.