Skip to content

Commit

Permalink
feat: sub org column
Browse files Browse the repository at this point in the history
  • Loading branch information
dadiorchen committed Mar 11, 2022
1 parent 5889aca commit 7278619
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
55 changes: 55 additions & 0 deletions database/migrations/20220311021020-AddSubOrganization.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
let dbm;
let type;
let seed;
const fs = require('fs');
const path = require('path');

/**
* We receive the dbmigrate dependency from dbmigrate initially.
* This enables us to not have to rely on NODE_PATH.
*/
exports.setup = function (options, seedLink) {
dbm = options.dbmigrate;
type = dbm.dataType;
seed = seedLink;
};

exports.up = function (db) {
const filePath = path.join(
__dirname,
'sqls',
'20220311021020-AddSubOrganization-up.sql',
);
return new Promise(function (resolve, reject) {
fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
if (err) return reject(err);
console.log('received data: ', data);

resolve(data);
});
}).then(function (data) {
return db.runSql(data);
});
};

exports.down = function (db) {
const filePath = path.join(
__dirname,
'sqls',
'20220311021020-AddSubOrganization-down.sql',
);
return new Promise(function (resolve, reject) {
fs.readFile(filePath, { encoding: 'utf-8' }, function (err, data) {
if (err) return reject(err);
console.log('received data: ', data);

resolve(data);
});
}).then(function (data) {
return db.runSql(data);
});
};

exports._meta = {
version: 1,
};
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE earnings DROP COLUMN sub_organization;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE earnings ADD sub_organization uuid NOT NULL;

0 comments on commit 7278619

Please sign in to comment.