czemu / nova-calendar-tool

A Laravel Nova tool to display a calendar with event management.
MIT License
31 stars 29 forks source link

Migration Unable to install #1

Closed matthewhutchings closed 4 years ago

matthewhutchings commented 4 years ago

Error: Method Illuminate\Database\Schema\Blueprint::id does not exist.

Solution: change $table->id(); to $table->bigIncrements('id');

czemu commented 4 years ago

Hello,

It seems you are using an older Laravel version. Referring to the current (7.x) docs, the method id() exists and is an alias for the bigIncrements('id') method: https://laravel.com/docs/7.x/migrations#columns

Thank you for sharing your solution!