Sha256: 03b3969060f7e5eb50e18c1d2111d309b37c74ee7c4ab4a0f592c87f58272194
Contents?: true
Size: 395 Bytes
Versions: 5
Compression:
Stored size: 395 Bytes
Contents
class AddMediaPathToMedium < ActiveRecord::Migration def self.up add_column :media, :media_path, :string, :limit => 128 add_column :media, :config_path, :string, :limit => 128 add_column :media, :image_path, :string, :limit => 128 end def self.down remove_column :media, :config_path remove_column :media, :media_path remove_column :media, :image_path end end
Version data entries
5 entries across 5 versions & 1 rubygems