13 lines
191 B
JavaScript
13 lines
191 B
JavaScript
module.exports = {
|
|
up: [
|
|
['create', {
|
|
table: 'remote_sent'
|
|
}],
|
|
],
|
|
down: [
|
|
['drop', {
|
|
table: 'remote_sent'
|
|
}],
|
|
]
|
|
};
|