~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/cake/tests/test_app/plugins/test_plugin/config/schema/schema.php

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * TestAppSchema file
 
4
 *
 
5
 * Use for testing the loading of schema files from plugins.
 
6
 *
 
7
 * PHP versions 4 and 5
 
8
 *
 
9
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 
10
 * Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
11
 *
 
12
 * Licensed under The MIT License
 
13
 * Redistributions of files must retain the above copyright notice.
 
14
 *
 
15
 * @copyright     Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
16
 * @link          http://cakephp.org CakePHP(tm) Project
 
17
 * @package       cake
 
18
 * @subpackage    cake.app.config.sql
 
19
 * @since         CakePHP(tm) v 1.3
 
20
 * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
 
21
 */
 
22
class TestPluginAppSchema extends CakeSchema {
 
23
 
 
24
        var $name = 'TestPluginApp';
 
25
 
 
26
        var $acos = array(
 
27
                'id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'),
 
28
                'parent_id' => array('type'=>'integer', 'null' => true, 'default' => NULL, 'length' => 10),
 
29
                'model' => array('type'=>'string', 'null' => true),
 
30
                'foreign_key' => array('type'=>'integer', 'null' => true, 'default' => NULL, 'length' => 10),
 
31
                'alias' => array('type'=>'string', 'null' => true),
 
32
                'lft' => array('type'=>'integer', 'null' => true, 'default' => NULL, 'length' => 10),
 
33
                'rght' => array('type'=>'integer', 'null' => true, 'default' => NULL, 'length' => 10),
 
34
                'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
 
35
        );
 
36
}