13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
const mongoose = require('mongoose');
|
|
const { Schema } = mongoose;
|
|
|
|
const schema = new Schema({
|
|
country_name: { type: String},
|
|
country_code: { type: String },
|
|
state_name: { type: String, required: true },
|
|
state_code: { type: String }
|
|
});
|
|
|
|
module.exports = mongoose.model( "states", schema );
|
|
|