increments('id'); $table->string('name',255); $table->string('last_name',255); $table->integer('creator_id'); $table->integer('status'); $table->string('image_name')->nullable(); $table->string('image_type',10)->nullable(); $table->integer('creation_date'); $table->integer('modification_date'); $table->foreign('creator_id')->references('id')->on('users'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('profile'); } }