Class: Flatfish::CreateMedia

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/flatfish/create_tables.rb

Class Method Summary collapse

Class Method Details

.setupObject

create media table



21
22
23
24
25
26
# File 'lib/flatfish/create_tables.rb', line 21

def self.setup
  create_table :media do |t|
    t.string :url
    t.binary :contents, :limit => 4294967295
  end
end