increments('id'); $table->string('title'); $table->string('description'); $table->string('type'); $table->boolean('active')->default(0); $table->string('slug'); $table->string('username'); $table->string('password'); $table->string('extra_credential'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('gateways'); } }