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
{{ message }}
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
Problem:
The migration generated from bundle exec rails generate approval:install does not recognize the type of the primary id being used, thus one has to manually adjust the migration file if a non-integer type, e.g. uuid is used. Affected columns are:
approval_comments.user_id
approval_items.resource_id
approval_requests.request_user_id
approval_requests.respond_user_id
Suggestion:
Let bundle exec rails generate approval:install accept an argument to set the type of the primary key type (defaults to integer if omitted for convenience).
The text was updated successfully, but these errors were encountered:
Problem:
The migration generated from
bundle exec rails generate approval:install
does not recognize the type of the primary id being used, thus one has to manually adjust the migration file if a non-integer type, e.g.uuid
is used. Affected columns are:approval_comments.user_id
approval_items.resource_id
approval_requests.request_user_id
approval_requests.respond_user_id
Suggestion:
Let
bundle exec rails generate approval:install
accept an argument to set the type of the primary key type (defaults tointeger
if omitted for convenience).The text was updated successfully, but these errors were encountered: