Is there any difference between the two following indexes in PostgreSQL:
CREATE INDEX my_index ON table_name (column_one, column_two)
INCLUDE (account_id, id)
and
CREATE INDEX my_index ON table_name (column_one, column_two)
INCLUDE (id, account_id)