UP model -> ts

This commit is contained in:
Nikola Petrov 2024-07-16 15:06:58 +02:00
parent e14d405ca2
commit b4b18cd44d
4 changed files with 29 additions and 29 deletions

View File

@ -1,14 +0,0 @@
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var cashTransaction = new Schema({
'raw': String,
'day': Number,
'month': Number,
'year': Number,
'amount': Number,
'type': Number,
'company': String,
});
module.exports = mongoose.model('cashTransaction', cashTransaction);

View File

@ -0,0 +1,15 @@
import mongoose, { Schema } from 'mongoose';
const cashTransaction = new Schema({
'raw': String,
'day': Number,
'month': Number,
'year': Number,
'amount': Number,
'type': Number,
'company': String,
});
const CashTransaction = mongoose.model('cashTransaction', cashTransaction);
export default CashTransaction;

View File

@ -1,15 +0,0 @@
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var mediaSchema = new Schema({
'title': String,
'released': String,
'webImg': String,
'code': String
});
module.exports = {
MovieModel: mongoose.model('movie', mediaSchema),
SeriesModel: mongoose.model('series', mediaSchema),
GameModel: mongoose.model('game', mediaSchema)
};

14
models/mediaModel.ts Normal file
View File

@ -0,0 +1,14 @@
import mongoose, { Schema } from 'mongoose';
const mediaSchema = new Schema({
'title': String,
'released': String,
'webImg': String,
'code': String
});
const MovieModel = mongoose.model('movie', mediaSchema);
const SeriesModel = mongoose.model('series', mediaSchema);
const GameModel = mongoose.model('game', mediaSchema);
export { MovieModel, SeriesModel, GameModel };