Incam_IntranetNueva/www/protected/migrations/m120127_152205_tbl_candidatos.php
2012-01-31 17:42:47 +00:00

37 lines
832 B
PHP

<?php
class m120127_152205_tbl_candidatos extends CDbMigration
{
public function up()
{
$this->createTable('tbl_candidatos', array(
'id' => 'pk',
'foto' => 'string',
'dni' => 'string',
'nombre' => 'string',
'apellidos' => 'string',
'email' => 'string',
'telefono_fijo' => 'string',
'telefono_movil' => 'string',
'sexo' => 'string',
'fecha_nacimiento' => 'date',
'lugar_nacimiento' => 'string',
));
}
public function down()
{
$this->dropTable('tbl_candidatos');
}
/*
// Use safeUp/safeDown to do migration with transaction
public function safeUp()
{
}
public function safeDown()
{
}
*/
}