increments('id'); $table->string('key', 45)->nullable(); $table->text('value')->nullable(); $table->string('type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('career_metas'); } }