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: ```ruby execute "ALTER TABLE xxx SET UNLOGGED;" ```