Skip to content

Commit

Permalink
Add nokia_cm.LNRELG (#178)
Browse files Browse the repository at this point in the history
Fixes issue #179
  • Loading branch information
erssebaggala committed Apr 13, 2020
1 parent cd428b1 commit ab89f47
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions db/migrations/1586753868496_add-nokia-cm-lnrelg-mo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
exports.shorthands = undefined;

exports.up = (pgm) => {
pgm.createTable({schema: "nokia_cm", name: "LNRELG"}, {id: "id", load_datetime: "load_datetime", data: "data"});
};

exports.down = (pgm) => {
pgm.dropTable({schema: "nokia_cm", name: 'LNRELG'});
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Boda-Lite",
"version": "0.5.1",
"version": "0.5.2",
"description": "Boda-Lite is a telecommunication network management application",
"private": true,
"homepage": "./",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const VERSION = "0.5.1";
export const VERSION = "0.5.2";

export default VERSION;

0 comments on commit ab89f47

Please sign in to comment.