I changed the column name from 'updated_at' to 'last_updated_at' in the laravel 'users' table used for authentication.
Now I get this error during registration:
SQLSTATE[HY000]: General error: 1 table accounts has no column named updated_at (SQL: insert into "accounts" ("username", "email_addr", "password", "updated_at", "created_at") values (...))
How do I make it use the new column name?