function tfa_basic_update_7001 in TFA Basic plugins 7
Create new database table {tfa_recovery_code}.
File
- ./
tfa_basic.install, line 184
Code
function tfa_basic_update_7001() {
$schema['tfa_recovery_code'] = array(
'fields' => array(
'id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'code' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'Base 64 encoded encrypted code',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'used' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'id',
),
'indexes' => array(
'uid' => array(
'uid',
),
),
);
db_create_table('tfa_recovery_code', $schema['tfa_recovery_code']);
}