['type' => 'integer', 'length' => 10, 'unsigned' => true, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null], 'db_version' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => true, 'default' => '0', 'comment' => '', 'precision' => null, 'autoIncrement' => null], '_constraints' => [ 'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []], ], '_options' => [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_unicode_ci' ], ]; // @codingStandardsIgnoreEnd /** * Init method * * @return void */ public function init() { $this->table = "migrations"; $this->records = [ [ 'id' => 1, 'db_version' => 2, ], ]; parent::init(); } }