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
We're using Ransack in our Rails API. One of our Postgres tables has generated/virtuals columns, however they aren't included in the Ransack query, when I try and sort by these columns:
Here is my migration for adding the virtual column:
class AddGeneratedColumnsToVehicles < ActiveRecord::Migration[7.1]
def change
# Add virtual column to calculate horsepower
add_column :vehicles, :horsepower, :virtual, type: :float, as: "ROUND((engine_power / 0.745699872)::numeric, 2)::float", stored: true
end
end
We're using Ransack in our Rails API. One of our Postgres tables has generated/virtuals columns, however they aren't included in the Ransack query, when I try and sort by these columns:
Here is my migration for adding the virtual column:
Example:
I would expect the output to be:
"SELECT "vehicles".* FROM "vehicles" ORDER BY "vehicles"."horsepower" DESC
https://www.postgresql.org/docs/current/ddl-generated-columns.html
The text was updated successfully, but these errors were encountered: