table('config', [ 'id' => false, 'primary_key' => ['id'], 'engine' => 'InnoDB', 'encoding' => 'utf8mb4', 'collation' => 'utf8mb4_general_ci', 'comment' => '', 'row_format' => 'DYNAMIC', ]) ->changeColumn('id', 'uuid', [ 'null' => false, 'default' => 'uuid()', ]) ->save(); } }