CC-3921: Add mobile phone number field to user record

-committing Doctrine migartion file for new cell_phone column
This commit is contained in:
denise 2012-06-13 14:48:24 -04:00
parent 9cabd4d32c
commit dbd6b7444b
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace DoctrineMigrations;
use Doctrine\DBAL\Migrations\AbstractMigration,
Doctrine\DBAL\Schema\Schema;
class Version20120613123039 extends AbstractMigration
{
public function up(Schema $schema)
{
$table = $schema->getTable("cc_subjs");
$table->addColumn("cell_phone", "string");
}
public function down(Schema $schema)
{
}
}