Advertisement
Guest User

Yiiki 2 - 3

a guest
Jul 9th, 2011
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement