Sha256: 55247adf5b89c2c79c8626f6d7db13dced3ece93489da0bfa0ca4d4ac7a48a1a

Contents?: true

Size: 357 Bytes

Versions: 22

Compression:

Stored size: 357 Bytes

Contents

class CreateNiftyAttachmentsTable < ActiveRecord::Migration
  
  def up
    create_table :nifty_attachments do |t|
      t.integer :parent_id
      t.string  :parent_type, :token, :digest, :role, :file_name, :file_type
      t.binary :data, :limit => 10.megabytes
      t.timestamps
    end
  end
  
  def down
    drop_table :nifty_attachments
  end
  
end

Version data entries

22 entries across 22 versions & 4 rubygems

Version Path
documentation-1.0.9 db/migrate/20140724111844_create_nifty_attachments_table.rb
documentation-1.0.8 db/migrate/20140724111844_create_nifty_attachments_table.rb
documentation-1.0.7 db/migrate/20140724111844_create_nifty_attachments_table.rb
documentation-1.0.6 db/migrate/20140724111844_create_nifty_attachments_table.rb
local_documentation-1.0.0 db/migrate/20140724111844_create_nifty_attachments_table.rb
documentation-1.0.5 db/migrate/20140724111844_create_nifty_attachments_table.rb
documentation-1.0.4 db/migrate/20140724111844_create_nifty_attachments_table.rb
documentation-1.0.3 db/migrate/20140724111844_create_nifty_attachments_table.rb
documentation-1.0.2 db/migrate/20140724111844_create_nifty_attachments_table.rb
nifty-attachments-1.0.3 lib/nifty/attachments/migration.rb
nifty-attachments-1.0.1 lib/nifty/attachments/migration.rb
shoppe-0.0.20 test/app/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.19 test/app/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.18 test/app/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.17 test/app/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.16 test/app/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.15 test/dummy/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.14 test/dummy/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.13 test/dummy/db/migrate/20131017165217_create_nifty_attachments_table.rb
shoppe-0.0.12 test/dummy/db/migrate/20131017165217_create_nifty_attachments_table.rb