implement registration

This commit is contained in:
Roland Schneider
2018-12-26 16:50:17 +01:00
parent b6e590f196
commit b2bb210cee
18 changed files with 496 additions and 51 deletions

View File

@@ -0,0 +1,28 @@
<?php
use yii\db\Schema;
use yii\db\Migration;
class m181219_063217_alter_table_EVENT_REGISTRATION_add_column_ID_TICKET extends Migration
{
public function up()
{
$this->addColumn("event_registration", "id_ticket", $this->integer() );
$this->addColumn("event_registration", "id_card", $this->integer() );
}
public function down()
{
}
/*
// Use safeUp/safeDown to run migration code within a transaction
public function safeUp()
{
}
public function safeDown()
{
}
*/
}