Loading invite.install +16 −1 Original line number Diff line number Diff line Loading @@ -127,7 +127,22 @@ function invite_schema() { 'not null' => TRUE, 'serialize' => TRUE, ), ) + entity_exportable_schema_fields(), ), 'status' => array( 'type' => 'int', 'not null' => TRUE, // Set the default to ENTITY_CUSTOM without using the constant as it is // not safe to use it at this point. 'default' => 0x01, 'size' => 'tiny', 'description' => 'The exportable status of the entity.', ), 'module' => array( 'description' => 'The name of the providing module if the entity has been defined in code.', 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), 'primary key' => array('itid'), 'unique keys' => array( 'type' => array('type'), Loading Loading
invite.install +16 −1 Original line number Diff line number Diff line Loading @@ -127,7 +127,22 @@ function invite_schema() { 'not null' => TRUE, 'serialize' => TRUE, ), ) + entity_exportable_schema_fields(), ), 'status' => array( 'type' => 'int', 'not null' => TRUE, // Set the default to ENTITY_CUSTOM without using the constant as it is // not safe to use it at this point. 'default' => 0x01, 'size' => 'tiny', 'description' => 'The exportable status of the entity.', ), 'module' => array( 'description' => 'The name of the providing module if the entity has been defined in code.', 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), 'primary key' => array('itid'), 'unique keys' => array( 'type' => array('type'), Loading