How to use unlogged PostgreSQL tables in Rails and ActiveRecord
After calling create_table use a raw SQL statement to convert a table to unlogged:
execute "ALTER TABLE xxx SET UNLOGGED;"
After calling create_table use a raw SQL statement to convert a table to unlogged:
execute "ALTER TABLE xxx SET UNLOGGED;"