In the module "Schema" is accusing the following incompatibilities:

media_youtube_metadata

column value - difference on: not null
declared: array('description' => t('TODO: please describe this field!'), 'type' => 'varchar', 'length' => 255, 'not null' => FALSE)
actual: array('description' => t('TODO: please describe this field!'), 'type' => 'varchar', 'length' => '255', 'not null' => TRUE)

indexes value: unexpected (not an error)

indexes value_2: unexpected (not an error)

tested some patches that failed, someone could help?

CommentFileSizeAuthor
#1 media_youtube.install.zip4.02 KBdobrin
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dobrin’s picture

FileSize
4.02 KB

We have this

        'not null' => TRUE,
        'not null' => FALSE,

on four places in the file 'media_youtube.install' which is not correct. Should have only one definition for 'not null'. Remove lines # 101, 133, 325, 357 from 'media_youtube.install' or replace that file with the file I attached.