osem-fcy/db/migrate/20130821102047_add_tshirt_to_people.rb

8 lines
145 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddTshirtToPeople < ActiveRecord::Migration
def change
add_column :people, :tshirt, :string
end
end