Skip to content

Commit

Permalink
User + Auth Routes Using Prisma (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShushawnS authored Mar 24, 2024
1 parent 0fc6a08 commit eee46a1
Show file tree
Hide file tree
Showing 7 changed files with 12,946 additions and 144 deletions.
2 changes: 1 addition & 1 deletion backend/typescript/models/user.model.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Column, DataType, Model, Table } from "sequelize-typescript";
import { Role } from "../types";

@Table({ tableName: "users" })
@Table({ tableName: "User" })
export default class User extends Model {
@Column({ type: DataType.STRING })
first_name!: string;
Expand Down
Loading

0 comments on commit eee46a1

Please sign in to comment.