the dafault code for the id column for the users table is like such:
**$table->id();**
But I changed in to: $table->bigIncrements('user_id');
Now i got error saying that 'id' column is not found in a file that doesnt run the query for users table at all. I dont know where i'm wrong.
Or is the id column is unchangeable after all since it is package?