файл миграции
public function up() { Schema::create('posts', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->longText('content'); $table->string('short_description'); $table->unsignedInteger('media_id')->nullable(); $table->foreign('media_id')->references('id')->on('medias'); $table->unsignedInteger('creator_id'); $table->foreign('creator_id')->references('id')->on('users'); $table->boolean('hide')->default(0); $table->timestamps(); }); }
после скрытия столбца я хочу добавить «столбец конфиденциальности»
Либо добавьте его в файл миграции, либо создайте другую миграцию, например:
Schema::table('posts', function (Blueprint $table) { $table->string('privacy')->after('hide'); });