Migration
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 2
dl 0
loc 3
c 0
b 0
f 0
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
introduced by
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
}