Project

General

Profile

« Previous | Next » 

Revision 0e38f1bf

Added by Andreas Kohlbecker almost 2 years ago

ref #9659 ext_links editing possible

View differences:

modules/cdm_dataportal/ext_links/ext_links.install
37 37
        'not null' => TRUE,
38 38
        'description' => 'The string to concatenate name parts in the URL query string',
39 39
      ],
40
      'category' => [
41
        'type' => 'varchar',
42
        'length' => 255,
43
        'not null' => TRUE,
44
        'description' => 'The link category',
45
      ],
40 46
      'weight' => [
41 47
        'type' => 'int',
42 48
        'not null' => TRUE,
......
57 63
  ];
58 64

  
59 65
  return $schema;
66
}
67

  
68
/**
69
 * Implements hook_uninstall().
70
 */
71
function hook_uninstall() {
72
  db_drop_table('ext_links');
60 73
}

Also available in: Unified diff