UP model -> ts
This commit is contained in:
parent
e14d405ca2
commit
b4b18cd44d
@ -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);
|
|
15
models/cashTransactionModel.ts
Normal file
15
models/cashTransactionModel.ts
Normal 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;
|
@ -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
14
models/mediaModel.ts
Normal 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 };
|
Loading…
x
Reference in New Issue
Block a user