Skip to content

Commit

Permalink
fix(merge): clean up merge conflicts
Browse files Browse the repository at this point in the history
This removes legacy exchange rate code.
  • Loading branch information
jniles committed Feb 26, 2016
1 parent 6013b62 commit 432a97e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
2 changes: 1 addition & 1 deletion server/config/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ var suppliers = require('../controllers/admin/suppliers');
var multipart = require('connect-multiparty');

exports.configure = function (app) {
winston.log('debug', 'Configuring routes');
winston.debug('Configuring routes');

// exposed to the outside without authentication
app.get('/languages', users.getLanguages);
Expand Down
15 changes: 0 additions & 15 deletions server/models/updates/synt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -381,21 +381,6 @@ ALTER TABLE account ADD FOREIGN KEY (`account_type_id`) REFERENCES account_type
ALTER TABLE `project`
ADD `locked` BOOLEAN NOT NULL;



-- Changing the exchange_rate table
-- Date: 2016-02-05
-- By: Chris LOMAME

ALTER TABLE `exchange_rate`
CHANGE `enterprise_currency_id` `enterprise_id` TINYINT(3) UNSIGNED NOT NULL;

ALTER TABLE `exchange_rate`
CHANGE `foreign_currency_id` `currency_id` TINYINT(3) UNSIGNED NOT NULL;

ALTER TABLE `exchange_rate`
CHANGE `date` `date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP;

-- Linking service o enterprise directly
-- Date : 2016-02-02
-- By : Dedrick Kitamuka
Expand Down
1 change: 1 addition & 0 deletions server/test/api/locations.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* jshint expr:true */
var chai = require('chai');
var expect = chai.expect;
var uuid = require('node-uuid');
Expand Down

0 comments on commit 432a97e

Please sign in to comment.