document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. class m110710_033230_pages_tabla_hozzaadasa extends CDbMigration
  3. {
  4.     public function up()
  5.     {
  6.         $this->createTable(
  7.             \'pages\',
  8.             array(
  9.                 \'id\'        => \'pk\',
  10.                 \'title\'     => \'varchar(125)\',
  11.                 \'body\'      => \'text\',
  12.                 \'revision\'  => \'int\',
  13.                 \'created\'   => \'int\'
  14.             )
  15.         );
  16.     }
  17.  
  18.     public function down()
  19.     {
  20.         $this->dropTable( \'pages\' );
  21.     }
  22. }
');