protected function createNotificationSubscriptionChannelTable(Schema $schema)
    {
        $table = $schema->createTable('ds_notif_subscription_channel');
        $table->addColumn('subscription_id', 'integer', []);
        $table->addColumn('channel_id', 'integer', []);