Issues (41)

src/Migration.php (1 issue)

Severity
1
<?php
2
3
namespace carono\yii2migrate;
4
5
use carono\yii2migrate\traits\MigrationTrait;
6
use yii\db\Migration as BaseMigration;
7
8
9
class Migration extends BaseMigration
10
{
11
    use MigrationTrait;
0 ignored issues
show
The trait carono\yii2migrate\traits\MigrationTrait requires some properties which are not provided by carono\yii2migrate\Migration: $isPrimaryKey, $precision, $size, $tablePrefix, $scale, $driverName, $columnNames, $allowNull, $comment, $type, $autoIncrement, $defaultValue
Loading history...
12
}