We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i have a problem when run php artisan migrate in files
php artisan migrate
$table->text('unit')->nullable()->default(' ');
$table->json('data')->default('[]');
i solve it by making them ->nullable() is right for your system or there is a better solution .
->nullable()
The text was updated successfully, but these errors were encountered:
You are using mysql or maria db?
Sorry, something went wrong.
mysql
You can choose mariadb or change json fields to blob
yes I already did this
No branches or pull requests
i have a problem when run
php artisan migrate
in files$table->text('unit')->nullable()->default(' ');
$table->json('data')->default('[]');
i solve it by making them
->nullable()
is right for your system or there is a better solution .The text was updated successfully, but these errors were encountered: