bigIncrements('id'); $table->unsignedBigInteger('user_id')->index('highlights_user_id_foreign'); $table->text('expression'); $table->string('color', 7); $table->unsignedInteger('position')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('highlights'); } }