diff options
Diffstat (limited to 'modules/simpletest/tests/database_test.install')
-rw-r--r-- | modules/simpletest/tests/database_test.install | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/simpletest/tests/database_test.install b/modules/simpletest/tests/database_test.install index cd0f7a96d..709ff8947 100644 --- a/modules/simpletest/tests/database_test.install +++ b/modules/simpletest/tests/database_test.install @@ -156,22 +156,6 @@ function database_test_schema() { 'primary key' => array('tid'), ); - $schema['test_date'] = array( - 'description' => 'A simple table including a datetime field for testing datetime behavior.', - 'fields' => array( - 'id' => array( - 'description' => 'Simple unique ID.', - 'type' => 'serial', - 'not null' => TRUE, - ), - 'dummy_date' => array( - 'description' => 'A dummy datetime field.', - 'type' => 'datetime', - ), - ), - 'primary key' => array('id'), - ); - $schema['test_null'] = array( 'description' => 'Basic test table for NULL value handling.', 'fields' => array( |