Skip to content

Migration issues #104

Closed
Closed
@grayxr

Description

@grayxr

Hi, cool package! My problem is similar to #90 - I have some methods in migrations that are failing with your package. I'm using rydurham's L4withSentry package - and the migration files use the following migration methods that I think your package doesn't support:

...

    public function up()
{
    Schema::create('users', function($table)
    {
        $table->boolean('activated')->default(0);  //this default method
    });
}

... and

    public function up()
{
    Schema::create('users_groups', function($table)
    {
        $table->integer('user_id')->unsigned();  //this unsigned method
    });
}

...

Also, it seems this package may not work correctly with the catalyst/sentry package used in L4withSentry.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions