add migration for payment later db index2

This commit is contained in:
Roland Schneider 2016-07-29 17:32:05 +02:00
parent d2d44e51d9
commit a20f91470b
3 changed files with 33 additions and 1 deletions

View File

@ -1,3 +1,5 @@
-0.0.81
- add comment to transaction/index
-0.0.80 -0.0.80
- csoportos beszedés: kosár ha nem sikerült - csoportos beszedés: kosár ha nem sikerült
- későbbi utalások: xls, belépések száma - későbbi utalások: xls, belépések száma

View File

@ -5,7 +5,7 @@ return [
'supportEmail' => 'rocho02@gmail.com', 'supportEmail' => 'rocho02@gmail.com',
'infoEmail' => 'info@rocho-net.hu', 'infoEmail' => 'info@rocho-net.hu',
'user.passwordResetTokenExpire' => 3600, 'user.passwordResetTokenExpire' => 3600,
'version' => 'v0.0.80', 'version' => 'v0.0.81',
'company' => 'movar',//gyor 'company' => 'movar',//gyor
'company_name' => "Freimann Kft.", 'company_name' => "Freimann Kft.",
'product_visiblity' => 'account',// on reception which products to display. account or global 'product_visiblity' => 'account',// on reception which products to display. account or global

View File

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