/var/www/vhosts/nabawater/vendor/yiisoft/yii2/views
Edit: /var/www/vhosts/nabawater/vendor/yiisoft/yii2/views/createTableMigration.php (1285B)
use yii\db\Migration;
/**
* Handles the creation of table `= $table ?>`.
= $this->render('_foreignTables', [
'foreignKeys' => $foreignKeys,
]) ?>
*/
class = $className ?> extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
= $this->render('_createTable', [
'table' => $table,
'fields' => $fields,
'foreignKeys' => $foreignKeys,
])
?>
render('_addComments', [
'table' => $table,
'tableComment' => $tableComment,
]);
}
?>
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
= $this->render('_dropTable', [
'table' => $table,
'foreignKeys' => $foreignKeys,
])
?>
}
}