Sha256: 4bad0e81518b851fb30465ac223236568ddb2d12c6ff8f860f1e47486c800a6a
Contents?: true
Size: 425 Bytes
Versions: 4
Compression:
Stored size: 425 Bytes
Contents
class AddMediaNodes < ActiveRecord::Migration def self.up create_table :media_nodes do |t| t.column :parent_id, :integer t.column :type, :string t.column :name, :string t.column :content_type, :string t.column :size, :integer t.column :path, :string t.column :hidden, :boolean, :default => false end end def self.down drop_table :media_nodes end end
Version data entries
4 entries across 4 versions & 2 rubygems