6 lines
114 B
Ruby
6 lines
114 B
Ruby
|
|
class AddTshirtToPeople < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :people, :tshirt, :string
|
||
|
|
end
|
||
|
|
end
|