add reception key changes, add money movent storno, status display

This commit is contained in:
2016-01-22 19:10:30 +01:00
parent a2a6b1f240
commit 027a96790a
24 changed files with 220 additions and 25 deletions

View File

@@ -0,0 +1,31 @@
<?php
use yii\db\Schema;
use yii\db\Migration;
class m160122_135105_alter__table__ticket_installment_request__add__column__detsta_code__and__comment extends Migration
{
public function up()
{
$this->addColumn("ticket_installment_request", "detsta_answer", "string");
$this->addColumn("ticket_installment_request", "comment", "string");
}
public function down()
{
echo "m160122_135105_alter__table__ticket_installment_request__add__column__detsta_code__and__comment cannot be reverted.\n";
return false;
}
/*
// Use safeUp/safeDown to run migration code within a transaction
public function safeUp()
{
}
public function safeDown()
{
}
*/
}