From 9138f7810d72c55a8f9673cf18ae0c4ade175f6a Mon Sep 17 00:00:00 2001 From: Ceeram Date: Thu, 27 Nov 2014 22:26:24 +0100 Subject: [PATCH] Remove unused file --- .../TestPlugin/config/Schema/schema.php | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 tests/test_app/Plugin/TestPlugin/config/Schema/schema.php diff --git a/tests/test_app/Plugin/TestPlugin/config/Schema/schema.php b/tests/test_app/Plugin/TestPlugin/config/Schema/schema.php deleted file mode 100644 index c616c2c70b1..00000000000 --- a/tests/test_app/Plugin/TestPlugin/config/Schema/schema.php +++ /dev/null @@ -1,40 +0,0 @@ - array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary'), - 'parent_id' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), - 'model' => array('type' => 'string', 'null' => true), - 'foreign_key' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), - 'alias' => array('type' => 'string', 'null' => true), - 'lft' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), - 'rght' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), - 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)) - ); -}