Index: og_panels.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/og/modules/og_panels/Attic/og_panels.install,v retrieving revision 1.4 diff -u -p -r1.4 og_panels.install --- og_panels.install 29 Oct 2008 19:59:08 -0000 1.4 +++ og_panels.install 10 Jun 2009 14:08:31 -0000 @@ -1,36 +1,13 @@ 'Stores a panel for a group', + 'fields' => array( + 'nid' => array( + 'description' => "The group's {node}.nid.", + 'type' => 'int', + 'size' => 'normal', + 'not null' => TRUE, + ), + 'did' => array( + 'description' => "The group's panels did.", + 'type' => 'int', + 'size' => 'normal', + 'not null' => TRUE, + ), + 'published' => array( + 'description' => "is the panels published yet or not", + 'type' => 'int', + 'size' => 'normal', + 'not null' => TRUE, + ), + 'page_title' => array( + 'description' => "store the Pagetitle of the panel", + 'type' => 'varchar', + 'length' => 255, + 'not null' => TRUE, + ), + 'path' => array( + 'description' => "stores the path of the panel page", + 'type' => 'varchar', + 'length' => 100, + 'not null' => TRUE, + ), + 'default_page' => array( + 'description' => "stores wether the panel page is the default page", + 'type' => 'int', + 'size' => 'normal', + 'null' => TRUE, + ), + 'show_blocks' => array( + 'description' => "stores wether the panel page is the default page", + 'type' => 'int', + 'size' => 'normal', + 'null' => TRUE, + ), + 'weight' => array( + 'description' => "stores the page weight of the page", + 'type' => 'int', + 'size' => 'normal', + 'not null' => TRUE, + 'default' => '0', + ), + ), + 'primary keys' => ('did'), + ); + + return $schema; +} +