Closed
Description
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
Labels
No labels