increments('id'); $table->text('public_key')->nullable(); $table->text('secret')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('google_captcha_keys'); } }