Sha256: fe76369e27b6eb6a1b730035fcf74610a38ea8689906cff211cd0a02ced98ac4
Contents?: true
Size: 445 Bytes
Versions: 40
Compression:
Stored size: 445 Bytes
Contents
class DropThemes < ActiveRecord::Migration def up rename_column :pageflow_accounts_themes, :theme_id, :theme_name add_column :pageflow_themings, :theme_name, :string execute(<<-SQL) UPDATE pageflow_themings SET theme_name = (SELECT css_dir FROM pageflow_themes WHERE pageflow_themes.id = pageflow_themings.theme_id); SQL remove_reference :pageflow_themings, :theme drop_table :pageflow_themes end end
Version data entries
40 entries across 40 versions & 1 rubygems