hostr/test/initdb.js
2018-06-02 15:50:39 +00:00

11 lines
240 B
JavaScript

import co from 'co';
import models from '../models';
import debugname from 'debug';
const debug = debugname('hostr:db');
co(async function sync() {
debug('Syncing schema');
await models.sequelize.sync();
debug('Schema synced');
});