You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OK, just now I figured out the solution to my problem: Insufficient database permissions for the user on production. I had to
grant usage on schema history to "my_database_user";
grant usage on schema temporal to "my_database_user";
grant all privileges on all tables in schema history to "my_database_user";
grant all privileges on all sequences in schema history to "my_database_user";
grant all privileges on all tables in schema temporal to "my_database_user";
grant all privileges on all sequences in schema temporal to "my_database_user";
This is what I got after merging chronomodel into master and running migrations on our production server:
OK, just now I figured out the solution to my problem: Insufficient database permissions for the user on production. I had to
This is what I got after merging
chronomodel
into master and running migrations on our production server:leads to
and
Impression.primary_key
isnil
. Even if the migrations have run successfully, when I askImpression.chrono?
I getfalse
.This was all not very self-explaining and it took me a while until I found out the source of the problem.
So my suggestion is to either:
Thoughts?
The text was updated successfully, but these errors were encountered: