mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
8 lines
130 B
Ruby
8 lines
130 B
Ruby
|
class AddStream < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_table :profiles do |p|
|
||
|
p.string :stream
|
||
|
end
|
||
|
end
|
||
|
end
|