aviation-model
Version:
Public methods for querying the information from aviation-pg
18 lines (16 loc) • 344 B
JavaScript
;
module.exports = function(sequelize, DataTypes){
return sequelize.define("airline_destinations", {
airline_id: {
type: DataTypes.TEXT,
primaryKey: true
},
airport_id: {
type: DataTypes.TEXT,
primaryKey: true
}
}, {
tableName: "airline_destinations",
timestamps: false
});
};