Files
liberama/server/db/jembaMigrations/app/001-create.js

13 lines
191 B
JavaScript

module.exports = {
up: [
['create', {
table: 'remote_sent'
}],
],
down: [
['drop', {
table: 'remote_sent'
}],
]
};