id(); $table->foreignId('organization_id')->nullable()->default(null)->constrained(); $table->string('short_name'); $table->text('title'); $table->text('stream_link'); $table->text('languages')->default('[]'); $table->string('ext_id')->nullable()->default(null); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('channels'); } };