Sha256: d0138400dc6d38877b94b31de305ad0c35bf4e3cd9507b155cffb94e97dafe6c

Contents?: true

Size: 230 Bytes

Versions: 4

Compression:

Stored size: 230 Bytes

Contents

class CreateFileColumnImages < ActiveRecord::Migration
  def self.up
    create_table :file_column_images do |t|
      t.string :image
      t.timestamps
    end
  end

  def self.down
    drop_table :file_column_images
  end
end

Version data entries

4 entries across 3 versions & 1 rubygems

Version Path
admin_assistant-2.1.0 rails_3_0/db/migrate/20090323005947_create_file_column_images.rb
admin_assistant-2.0.1 rails_2_test/db/migrate/20090323005947_create_file_column_images.rb
admin_assistant-2.0.1 rails_3_test/db/migrate/20090323005947_create_file_column_images.rb
admin_assistant-1.0.1 test_rails_app/db/migrate/20090323005947_create_file_column_images.rb