AppReports/seeds/prod.js
Timo Hocker 8d98cf8b66
Some checks failed
continuous-integration/drone/push Build is failing
ready for test deployment
2020-08-22 10:43:35 +02:00

20 lines
464 B
JavaScript

/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of appreports which is released under GPL-3.0-or-later.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, August 2020
*/
'use strict';
async function seed (knex) {
// eslint-disable-next-line no-console
console.log ('creating prod seeds');
await knex ('app')
.insert (
{ name: 'test app' }
);
}
module.exports = { seed };