2012-09-20 19:38:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
2012-10-24 17:18:48 +00:00
|
|
|
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');
|
|
|
|
|
}
|
2012-09-20 19:38:42 +00:00
|
|
|
|
|
|
|
|
}
|