Incam_PROFIND_Web/www/protected/migrations/m120905_183258_tbl_empresas.php
david e81ded2173 - Titulaciones de candidatos
- Extensión "jQuery Chosen"
- Arreglos en migraciones para indicar el tipo de tablas InnoDB


git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@67 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
2012-10-24 17:18:48 +00:00

22 lines
544 B
PHP

<?php
class m120905_183258_tbl_empresas extends CDbMigration {
public function up() {
$this->createTable('tbl_empresas', array(
'id' => 'pk',
'cif' => 'string',
'nombre' => 'string',
'email' => 'string',
'pagina_web' => 'string',
'empleados' => 'integer',
'direccion' => 'string',
'descripcion' => 'text',
), 'ENGINE=InnoDB CHARSET=utf8');
}
public function down() {
$this->dropTable('tbl_empresas');
}
}