increments('id'); $table->string('nick'); $table->string('name'); $table->string('homepage')->nullable(); $table->string('twitter')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('contacts'); } }