blob: 95bff0dab5831ad71ce45148984976a7902f2030 (
plain)
1
2
3
4
5
6
7
8
|
const db = require("../models");
const state = db.state_master;
// function to get all states
exports.allStates = () => {
const query = "SELECT * FROM state_master";
return db.sequelize.query(query, { type: db.sequelize.QueryTypes.SELECT });
};
|