Files
grecia/db/migrate/20171008154106_add_slug_to_polls.rb
Javi Martín 8f69399799 Add version to migration files
These migrations were backported after upgrading to Rails 5.
2019-05-28 16:40:52 +02:00

6 lines
113 B
Ruby

class AddSlugToPolls < ActiveRecord::Migration[4.2]
def change
add_column :polls, :slug, :string
end
end