4d6e899750
services for objects, branches, and commits; fixed some tests, scaffolded graphql api & resolvers
14 lines
337 B
JavaScript
14 lines
337 B
JavaScript
/* istanbul ignore file */
|
|
'use strict'
|
|
let debug = require( 'debug' )( 'speckle:modules' )
|
|
|
|
exports.up = async knex => {
|
|
debug( 'Setting up server base configuration.' )
|
|
await knex( 'server_config' ).insert( {
|
|
company: 'Acme Inc.'
|
|
} )
|
|
}
|
|
|
|
exports.down = async knex => {
|
|
await knex( 'server_config' ).where( true ).delete( )
|
|
} |