khanat-opennel-code/code/ryzom/tools/server/www/webtt/app/tests/fixtures/translation_file_fixture.php

26 lines
1.1 KiB
PHP
Raw Normal View History

<?php
2011-07-14 14:49:25 +00:00
/* TranslationFile Fixture generated on: 2011-07-04 13:04:11 : 1309777451 */
class TranslationFileFixture extends CakeTestFixture {
var $name = 'TranslationFile';
var $fields = array(
'id' => array('type' => 'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'),
'language_id' => array('type' => 'integer', 'null' => true, 'default' => NULL, 'length' => 10),
2011-07-14 14:49:25 +00:00
'filename_template' => array('type' => 'string', 'null' => true, 'default' => NULL, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'created' => array('type' => 'datetime', 'null' => true, 'default' => NULL),
'modified' => array('type' => 'datetime', 'null' => true, 'default' => NULL),
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)),
'tableParameters' => array('charset' => 'utf8', 'collate' => 'utf8_general_ci', 'engine' => 'MyISAM')
);
var $records = array(
array(
'id' => 1,
'language_id' => 1,
2011-07-14 14:49:25 +00:00
'filename_template' => 'Lorem ipsum dolor sit amet',
'created' => '2011-07-04 13:04:11',
'modified' => '2011-07-04 13:04:11'
),
);
}