aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120523123806_add_fields_to_referentials.rb
blob: 3958ed106f5f5cecab241fd720b468c963ccbe08 (plain)
1
2
3
4
5
6
7
class AddFieldsToReferentials < ActiveRecord::Migration
  def change
        add_column :referentials, :prefix, :string
        add_column :referentials, :projection_type, :string
        add_column :referentials, :time_zone, :string
  end
end