git://repos.xcallymotion.com
/
motion.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Built motion from commit 1333b3551.|1.0.38
[motion.git]
/
server
/
migrations
/
20170102134038-lists.js
1
'use strict';
2
3
module.exports = {
4
up: function(queryInterface, Sequelize) {
5
queryInterface.addColumn('cm_lists', 'variables', {
6
type: Sequelize.STRING
7
});
8
},
9
10
down: function(queryInterface, Sequelize) {
11
queryInterface.removeColumn('cm_lists', 'variables');
12
}
13
};