Sha256: d80df35f6b8af6b2e08a82f80a3643ce2e87071c0509ae6a109dd0486617b36a

Contents?: true

Size: 225 Bytes

Versions: 5

Compression:

Stored size: 225 Bytes

Contents

class CreatePhotos < ActiveRecord::Migration
  def self.up
    create_table :photos do |t|
      t.string :title
      t.text   :description

      t.timestamps
    end
  end

  def self.down
    drop_table :photos
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
giraffesoft-attribute_fu-0.2 test/db/migrate/001_create_photos.rb
spree-0.4.0 vendor/plugins/attribute_fu/test/db/migrate/001_create_photos.rb
spree-0.4.1 vendor/plugins/attribute_fu/test/db/migrate/001_create_photos.rb
spree-0.5.0 vendor/plugins/attribute_fu/test/db/migrate/001_create_photos.rb
spree-0.5.1 vendor/plugins/attribute_fu/test/db/migrate/001_create_photos.rb