ensl.org/db/migrate/20140509231817_add_stream.rb

8 lines
130 B
Ruby
Raw Normal View History

2014-05-10 08:44:48 +00:00
class AddStream < ActiveRecord::Migration
def change
change_table :profiles do |p|
p.string :stream
end
end
end