Larabel MariaDB errno:150 "외부 키 제약조건이 잘못 형성되었습니다" 투고 이행: Schema::create('posts', function (Blueprint $table) { $table->increments('id'); $table->string('channel_id'); $table->foreign('channel_id')->references('id')->on('channels'); $table->string('title'); $table->text('content'); $table->string('status')->default('published'); $table->string('type'); $table->string('published_at'); $table->time..