t('-'), 'fields' => array( 'name' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', 'description' => t("-") ), 'settings' => array( 'type' => 'text', 'size' => 'normal', 'description' => t('-') ), ), 'primary key' => array('name'), ); $schema['tinymce_role'] = array( 'description' => t('-'), 'fields' => array( 'name' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '', 'description' => t("-") ), 'rid' => array( 'type' => 'int', 'size' => 'tiny', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'description' => t('-') ), ), 'primary key' => array('name', 'rid'), ); return $schema; }