add frontend changes

This commit is contained in:
2015-10-30 09:28:58 +01:00
parent 4a04c9efa2
commit e34b150d74
41 changed files with 1083 additions and 254 deletions

View File

@@ -0,0 +1,30 @@
<?php
use yii\db\Schema;
use yii\db\Migration;
class m151029_090850_alter__table__transfer__add__column__id_customer extends Migration
{
public function up()
{
$this->addColumn("transfer", 'id_customer"', 'int(11)');
}
public function down()
{
echo "m151029_090850_alter__table__transfer__add__column__id_customer cannot be reverted.\n";
return false;
}
/*
// Use safeUp/safeDown to run migration code within a transaction
public function safeUp()
{
}
public function safeDown()
{
}
*/
}

View File

@@ -0,0 +1,30 @@
<?php
use yii\db\Schema;
use yii\db\Migration;
class m151029_095915_alter__table__transfer__fix__id_customer__column__name extends Migration
{
public function up()
{
$this->renameColumn("transfer", 'id_customer"', "id_customer");
}
public function down()
{
echo "m151029_095915_alter__table__transfer__fix__id_customer__column__name cannot be reverted.\n";
return false;
}
/*
// Use safeUp/safeDown to run migration code within a transaction
public function safeUp()
{
}
public function safeDown()
{
}
*/
}