芝麻web文件管理V1.00
编辑当前文件:/home/shaabmuni/crm/routes/console.php
comment(Inspiring::quote()); })->describe('Display an inspiring quote'); Artisan::command('mac-update', function () { $emails = new App\Model\helpdesk\Email\Emails(); $emails->update(['password'=>encrypt('')]); })->describe('Updating encrypted value to null'); /* * Command for pre install check */ Artisan::command('preinsatall:check', function () { try { $check_for_pre_installation = System::select('id')->first(); if ($check_for_pre_installation) { throw new \Exception('The data in database already exist. Please provide fresh database', 100); } } catch (\Exception $ex) { if ($ex->getCode() == 100) { $this->call('droptables'); } //throw new \Exception($ex->getMessage()); } $this->info('Preinstall has checked successfully'); })->describe('check for the pre installation'); /* * Migration for installation */ Artisan::command('install:migrate', function () { try { $tableNames = \Schema::getConnection()->getDoctrineSchemaManager()->listTableNames(); if (count($tableNames) == 0) { $this->call('migrate', ['--force' => true]); } } catch (Exception $ex) { throw new \Exception($ex->getMessage()); } $this->info('Migrated successfully'); })->describe('migration for install'); /* * Seeding for installation */ Artisan::command('install:seed', function () { \Schema::disableForeignKeyConstraints(); $tableNames = \Schema::getConnection()->getDoctrineSchemaManager()->listTableNames(); foreach ($tableNames as $name) { if ($name == 'migrations') { continue; } \DB::table($name)->truncate(); } $this->call('db:seed', ['--force' => true]); $this->info('seeded successfully'); })->describe('Seeding for install');