Displaying 1 result from an estimated 1 matches for "createtablepollsandpolloptions".
2006 Feb 16
9
rake migrate HANGS
I have been attempting to use migrations as a build a poll app.
I have created the initial file:
-----------------
class CreateTablePollsAndPollOptions < ActiveRecord::Migration
def self.up
create_table polls do |table|
table.column ''question'', :string
table.column ''user_id'', :integer
table.column ''start_time'', :datetime
table.column ''end_time'...