reset-database command


import { Command } from 'blognami';

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