migres icon indicating copy to clipboard operation
migres copied to clipboard

Postgresql migration tool

Results 8 migres issues
Sort by recently updated
recently updated
newest added

Currently the data type is required for the `changeColumn` method. This should probably just be optional as you may want to change just the column options. Another related thing is...

We should at least support comments on: - [x] tables - [ ] columns - [ ] constraints - [ ] indexes

For example when changing a column for bigserial to serial it should instead be converted to integer instead.

bug

```php $table->addIndex('users_name', 'name')->concurrently(); ``` ```php $table->addIndex('users_name', 'name')->where("name = 'foobar'"); ```

```php $this->createTable('users', function (Table $table) {})->setOwner('owner_name'); ```

Currently the type declaration of `Column::default()` is mixed. We instead should return Typed columns so we can declare the types on the default