1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- function entity_example_schema() {
- $schema = array();
-
-
- $schema['entity_example_basic'] = array(
- 'description' => 'The base table for our basic entity.',
- 'fields' => array(
- 'basic_id' => array(
- 'description' => 'Primary key of the basic entity.',
- 'type' => 'serial',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- ),
-
-
-
- 'bundle_type' => array(
- 'description' => 'The bundle type',
- 'type' => 'text',
- 'size' => 'medium',
- 'not null' => TRUE,
- ),
-
-
- 'item_description' => array(
- 'description' => 'A description of the item',
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'created' => array(
- 'description' => 'The Unix timestamp of the entity creation time.',
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- ),
- 'primary key' => array('basic_id'),
- );
- return $schema;
- }
- function entity_example_uninstall() {
- field_attach_delete_bundle('entity_example_basic', 'first_example_bundle');
- }
|