diff --git a/src/entitiy/NotificationSetting.ts b/src/entitiy/NotificationSetting.ts deleted file mode 100644 index 0592f95e..00000000 --- a/src/entitiy/NotificationSetting.ts +++ /dev/null @@ -1,22 +0,0 @@ -//NOT PART OF THE MAIN FILE - -// import { Entity, PrimaryGeneratedColumn, Column, Unique } from "typeorm" - -// @Entity() -// @Unique(["user_id"]) -// export class NotificationSetting { -// @PrimaryGeneratedColumn() -// id: number; - -// @Column() -// user_id: string; - -// @Column() -// email_notifications: boolean; - -// @Column() -// push_notifications: boolean; - -// @Column() -// sms_notifications: boolean; -// } \ No newline at end of file diff --git a/src/ormconfig.ts b/src/ormconfig.ts deleted file mode 100644 index f1224067..00000000 --- a/src/ormconfig.ts +++ /dev/null @@ -1,18 +0,0 @@ -//NOT PART OF THE MAIN FILE - -// import dotenv from "dotenv" -// import { DataSourceOptions } from "typeorm"; -// import { NotificationSetting } from "./entitiy/NotificationSetting"; -// dotenv.config() - -// const config: DataSourceOptions = { -// type: "postgres", -// host: process.env.DB_HOST, -// username: process.env.DB_USERNAME, -// password: process.env.DB_PASSWORD, -// database: process.env.DB_DATABASE, -// entities: [NotificationSetting], -// synchronize: false -// } - -// export default config; \ No newline at end of file