Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:Open-Earth-Foundation/CityCataly…
Browse files Browse the repository at this point in the history
…st into develop
  • Loading branch information
evanp committed Mar 21, 2024
2 parents 3062daa + 414a168 commit dcedac2
Show file tree
Hide file tree
Showing 16 changed files with 735 additions and 172 deletions.
16 changes: 16 additions & 0 deletions app/migrations/20240318105130-region-population.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"use strict";

/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn(
"Population",
"region_population",
Sequelize.BIGINT,
);
},

async down(queryInterface) {
await queryInterface.removeColumn("Population", "region_population");
},
};
Loading

0 comments on commit dcedac2

Please sign in to comment.