summaryrefslogtreecommitdiff
path: root/src/models/account/account.schema.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-04-24 20:34:00 +0300
committereug-vs <eug-vs@keemail.me>2021-04-24 20:34:00 +0300
commit593159c22c2acad599b67d1b128a52232b79a34b (patch)
tree02363af7bf3b8919260b70ca6e6415169c0879d2 /src/models/account/account.schema.ts
parent874b97bc01b691d7a4553c0ffb337bfaa003d1ff (diff)
downloadcommercel-api-593159c22c2acad599b67d1b128a52232b79a34b.tar.gz
feat: add accounts service
Diffstat (limited to 'src/models/account/account.schema.ts')
-rw-r--r--src/models/account/account.schema.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/models/account/account.schema.ts b/src/models/account/account.schema.ts
new file mode 100644
index 0000000..3ce3983
--- /dev/null
+++ b/src/models/account/account.schema.ts
@@ -0,0 +1,23 @@
+import { Document, Schema } from 'mongoose';
+
+export interface AccountSchema extends Document {
+ name: string;
+ code: string;
+ balance: number;
+}
+
+export const accountSchema = new Schema({
+ name: {
+ type: String,
+ required: true,
+ },
+ code: {
+ type: String,
+ required: true,
+ },
+ balance: {
+ type: Number,
+ default: 0,
+ },
+}, { timestamps: true });
+