updated core to 7.80
This commit is contained in:
@@ -217,5 +217,24 @@ function database_test_schema() {
|
||||
),
|
||||
);
|
||||
|
||||
$schema['virtual'] = array(
|
||||
'description' => 'Basic test table with a reserved name.',
|
||||
'fields' => array(
|
||||
'id' => array(
|
||||
'type' => 'serial',
|
||||
'unsigned' => TRUE,
|
||||
'not null' => TRUE,
|
||||
),
|
||||
'function' => array(
|
||||
'description' => "A column with a reserved name.",
|
||||
'type' => 'varchar',
|
||||
'length' => 255,
|
||||
'not null' => FALSE,
|
||||
'default' => '',
|
||||
),
|
||||
),
|
||||
'primary key' => array('id'),
|
||||
);
|
||||
|
||||
return $schema;
|
||||
}
|
||||
|
Reference in New Issue
Block a user