init-database command


import { Command } from 'blognami';

export default {
    async run(){
        await this.runCommand('migrate-database');
        await this.runCommand('seed-database');
    }
}