Blame view

vendor/yiisoft/yii2/views/migration.php 629 Bytes
abf1649b   andryeyev   Чистая установка ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  <?php
  /**
   * This view is used by console/controllers/MigrateController.php
   * The following variables are available in this view:
   */
  /* @var $className string the new migration class name */
  
  echo "<?php\n";
  ?>
  
  use yii\db\Schema;
  use yii\db\Migration;
  
  class <?= $className ?> extends Migration
  {
      public function up()
      {
  
      }
  
      public function down()
      {
          echo "<?= $className ?> cannot be reverted.\n";
  
          return false;
      }
  
      /*
      // Use safeUp/safeDown to run migration code within a transaction
      public function safeUp()
      {
      }
  
      public function safeDown()
      {
      }
      */
  }