function aes_schema in AES encryption 6
Same name and namespace in other branches
- 5 aes.install \aes_schema()
- 7 aes.install \aes_schema()
File
- ./
aes.install, line 92
Code
function aes_schema() {
$schema['aes_passwords'] = array(
'fields' => array(
'uid' => array(
'type' => 'int',
'unsigned' => true,
'not null' => true,
'default' => 0,
),
'pass' => array(
'type' => 'varchar',
'length' => 128,
'not null' => true,
'default' => '',
),
),
'primary key' => array(
'uid',
),
);
return $schema;
}