boolean('is_private'); $table->unsignedInteger('user_id'); $table->foreign('user_id') ->references('id')->on('users') ->onDelete('no action'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('albums', function (Blueprint $table) { $table->dropForeign('albums_user_id_foreign'); $table->dropColumn('user_id'); $table->dropColumn('is_private'); }); } }