CC-3921: Add mobile phone number field to user record
-committing Doctrine migartion file for new cell_phone column
This commit is contained in:
parent
9cabd4d32c
commit
dbd6b7444b
|
@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue