You are here

function media_slideshare_schema in Media: Slideshare 7

Implements hook_schema().

File

./media_slideshare.install, line 10
Install, update and uninstall functions for the Media: Issuu module.

Code

function media_slideshare_schema() {
  $schema['media_slideshare_url'] = array(
    'description' => '',
    'fields' => array(
      'id' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'description' => '',
      ),
      'url' => array(
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
        'description' => '',
      ),
    ),
    'primary key' => array(
      'id',
    ),
  );
  return $schema;
}