chore: init commit

This commit is contained in:
2026-06-08 14:06:13 +03:30
commit debdb70a52
9 changed files with 3084 additions and 0 deletions

21
src/entity/User.js Normal file
View File

@@ -0,0 +1,21 @@
import { EntitySchema } from "typeorm";
export const User = new EntitySchema({
name: "User",
columns: {
id: {
type: Number,
primary: true,
generated: true,
},
firstName: {
type: String,
},
lastName: {
type: String,
},
age: {
type: Number,
},
},
});