table('config', [ 'id' => false, 'primary_key' => ['id'], 'engine' => 'InnoDB', 'encoding' => 'utf8mb4', 'collation' => 'utf8mb4_general_ci', 'comment' => '', 'row_format' => 'DYNAMIC', ]) ->addColumn('id', 'uuid', [ 'null' => false, ]) ->changeColumn('name', 'string', [ 'null' => false, 'limit' => 256, 'collation' => 'utf8mb4_general_ci', 'encoding' => 'utf8mb4', 'after' => 'id', ]) ->changeColumn('value', 'string', [ 'null' => false, 'limit' => 256, 'collation' => 'utf8mb4_general_ci', 'encoding' => 'utf8mb4', 'after' => 'name', ]) ->addIndex(['id'], [ 'name' => 'id', 'unique' => true, ]) ->save(); } }