No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

39 líneas
637B

  1. <?php
  2. /**
  3. * This view is used by console/controllers/MigrateController.php
  4. * The following variables are available in this view:
  5. */
  6. /* @var $className string the new migration class name */
  7. echo "<?php\n";
  8. ?>
  9. use yii\db\Schema;
  10. use yii\db\Migration;
  11. class <?= $className ?> extends Migration
  12. {
  13. public function up()
  14. {
  15. }
  16. public function down()
  17. {
  18. echo "<?= $className ?> cannot be reverted.\n";
  19. return false;
  20. }
  21. /*
  22. // Use safeUp/safeDown to run migration code within a transaction
  23. public function safeUp()
  24. {
  25. }
  26. public function safeDown()
  27. {
  28. }
  29. */
  30. }