Skip to content

Migration issues #104

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
grayxr opened this issue Jan 5, 2014 · 4 comments
Closed

Migration issues #104

grayxr opened this issue Jan 5, 2014 · 4 comments

Comments

@grayxr
Copy link

grayxr commented Jan 5, 2014

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.

@jenssegers
Copy link
Contributor

Should be fixed now.

@grayxr
Copy link
Author

grayxr commented Jan 6, 2014

Thanks - would you have any recommendation in regard to using this package with cartalyst/sentry? Or would you just recommend using this package with Laravel's native auth?

@jenssegers
Copy link
Contributor

There are some known issues with Laravel's auth, but I heard Sentry worked for at least one person.

@jenssegers
Copy link
Contributor

I'm checking out the Auth issue again to see if there is an easy fix.

mnphpexpert added a commit to mnphpexpert/laravel-mongodb that referenced this issue Sep 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants