Schema::create('slack_channel_roles', function (Blueprint $table) {
            $table->unsignedInteger('role_id');
            $table->string('channel_id');
            $table->boolean('enable');
            $table->timestamps();