class CreateFormolPolls < ActiveRecord::Migration def change create_table :formol_polls do |t| t.belongs_to :topic t.string :question, :limit => 64 t.integer :duration t.integer :max_options t.integer :votes_count t.datetime :created_at end add_index :formol_polls, :topic_id, :unique => true end end