increments('id'); $table->string('title', 100); $table->string('name', 200)->nullable(); $table->text('configs', 65535)->nullable(); $table->text('remark', 65535)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('identities'); } }