Sha256: 9ba42c9215d39c1d4023d8c879435db4b91cc158ff58855a9d7162065b202821

Contents?: true

Size: 249 Bytes

Versions: 5

Compression:

Stored size: 249 Bytes

Contents

class CreateComments < ActiveRecord::Migration
  def self.up
    create_table :comments do |t|
      t.integer :photo_id
      t.string :author
      t.text :body

      t.timestamps
    end
  end

  def self.down
    drop_table :comments
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

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