28 lines
668 B
JavaScript
28 lines
668 B
JavaScript
'use strict';
|
|
const {
|
|
Model
|
|
} = require('sequelize');
|
|
module.exports = (sequelize, DataTypes) => {
|
|
class Airport extends Model {
|
|
/**
|
|
* Helper method for defining associations.
|
|
* This method is not a part of Sequelize lifecycle.
|
|
* The `models/index` file will call this method automatically.
|
|
*/
|
|
static associate(models) {
|
|
// define association here
|
|
}
|
|
}
|
|
Airport.init({
|
|
name: DataTypes.STRING,
|
|
iata_code: DataTypes.STRING,
|
|
icao_code: DataTypes.STRING,
|
|
lat: DataTypes.FLOAT,
|
|
lng: DataTypes.FLOAT,
|
|
country_code: DataTypes.STRING
|
|
}, {
|
|
sequelize,
|
|
modelName: 'Airport',
|
|
});
|
|
return Airport;
|
|
}; |