UNPKG

aviation-model

Version:

Public methods for querying the information from aviation-pg

19 lines (16 loc) 330 B
"use strict"; module.exports = function(sequelize, DataTypes){ return sequelize.define("airport_cities", { city_id: { type: DataTypes.TEXT, primaryKey: true }, airport_id: { type: DataTypes.TEXT, primaryKey: true } }, { tableName: "airport_cities", timestamps: false }); };