| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace app\migrations;
- use yii\db\Migration;
- /**
- * Class M241125141556AlterScoreRulesField
- */
- class M241125141556AlterScoreRulesField extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M241125141556AlterScoreRulesField cannot be reverted.\n";
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M241125141556AlterScoreRulesField cannot be reverted.\n";
- return false;
- }
- */
- }
|