Sha256: c1cbba80156860a44f470e81851f3fe618e1fed320815ae0e14cecb9c4560909
Contents?: true
Size: 679 Bytes
Versions: 3
Compression:
Stored size: 679 Bytes
Contents
class CreateFieldFormatTesters < ActiveRecord::Migration def change create_table :field_format_testers do |t| t.integer :integer_field t.float :float_field t.decimal :decimal_field t.date :date_field t.time :time_field t.datetime :datetime_field t.timestamp :timestamp_field t.boolean :boolean_field t.text :text_field t.text :email_field t.text :phone_field t.text :url_field end remove_column :nobel_prize_winners, :meaningless_time remove_column :nobel_prizes, :meaningless_decimal remove_column :nobel_prizes, :meaningless_float end end
Version data entries
3 entries across 3 versions & 1 rubygems