Rename schema files

This commit is contained in:
Zalmoxisus
2016-11-09 20:13:19 +02:00
parent 8419e7e090
commit 6794f63629
2 changed files with 0 additions and 0 deletions

12
lib/db/seeds/index.js Normal file
View File

@ -0,0 +1,12 @@
exports.seed = function(knex, Promise) {
return Promise.all([
knex('remotedev_apps').del()
]).then(function() {
return Promise.all([
knex('remotedev_apps').insert({
id: '78626c31-e16b-4528-b8e5-f81301b627f4',
title: 'Default'
})
]);
});
};