mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 03:29:37 +02:00
Database migration to support more weather properties
This commit is contained in:
parent
e2285e2deb
commit
a549149452
4 changed files with 60 additions and 13 deletions
35
db/migrations/03_weather.js
Normal file
35
db/migrations/03_weather.js
Normal file
|
@ -0,0 +1,35 @@
|
|||
const { DataTypes } = require('sequelize');
|
||||
const { INTEGER, FLOAT } = DataTypes;
|
||||
const loadConfig = require('../../utils/loadConfig');
|
||||
const getExternalWeather = require('../../utils/getExternalWeather');
|
||||
|
||||
const up = async (query) => {
|
||||
await query.addColumn('weather', 'humidity', {
|
||||
type: INTEGER,
|
||||
});
|
||||
|
||||
await query.addColumn('weather', 'windK', {
|
||||
type: FLOAT,
|
||||
});
|
||||
|
||||
await query.addColumn('weather', 'windM', {
|
||||
type: FLOAT,
|
||||
});
|
||||
|
||||
const { WEATHER_API_KEY: secret } = await loadConfig();
|
||||
|
||||
if (secret) {
|
||||
await getExternalWeather();
|
||||
}
|
||||
};
|
||||
|
||||
const down = async (query) => {
|
||||
await query.removeColumn('weather', 'humidity');
|
||||
await query.removeColumn('weather', 'windK');
|
||||
await query.removeColumn('weather', 'windM');
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
up,
|
||||
down,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue