schema->hasTable('settings')) { $this->schema->create('settings', function (Blueprint $table) { $table->increments('id'); $table->string('key'); $table->string('value')->nullable(); $table->boolean('cached')->default(1); $table->timestamps(); $table->engine = 'InnoDB'; $table->collation = 'utf8_unicode_ci'; $table->charset = 'utf8'; }); } } /** * {@inheritDoc} */ public function down() { $this->schema->drop('settings'); } }