Sha256: ffbe75b8a9d0e3893fa1caaf89eae29e0d42ac6439df74bf482acf081f6e7d2d

Contents?: true

Size: 402 Bytes

Versions: 2

Compression:

Stored size: 402 Bytes

Contents

Sequel.migration do
  change do
    alter_table(:photos) do
     add_column :title, String, text: true
     add_column :description, String, text: true
     add_column :aperture, Float
     add_column :shutter_speed_numerator, Integer
     add_column :shutter_speed_denominator, Integer
     add_column :iso, Integer
     add_column :latitude, Float
     add_column :longitude, Float
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
piccle-0.1.1.pre db/migrations/002_update_photos.rb
piccle-0.1.0.rc1 db/migrations/002_update_photos.rb