1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- echo "<?php\n";
- if (!empty($namespace)) {
- echo "\nnamespace {$namespace};\n";
- }
- ?>
- use yii\db\Migration;
- class <?= $className ?> extends Migration
- {
-
- public function safeUp()
- {
- <?= $this->render('_createTable', [
- 'table' => $table,
- 'fields' => $fields,
- 'foreignKeys' => $foreignKeys,
- ])
- ?>
- <?php if (!empty($tableComment)) {
- echo $this->render('_addComments', [
- 'table' => $table,
- 'tableComment' => $tableComment,
- ]);
- }
- ?>
- }
-
- public function safeDown()
- {
- <?= $this->render('_dropTable', [
- 'table' => $table,
- 'foreignKeys' => $foreignKeys,
- ])
- ?>
- }
- }
|