Files
nairobi/db/migrate/20160914110004_create_polls.rb
2016-11-14 13:51:09 +01:00

8 lines
127 B
Ruby

class CreatePolls < ActiveRecord::Migration
def change
create_table :polls do |t|
t.string :name
end
end
end