blob: 83d20363e60fa54ad2482b79bf9ac4fa224b6fe1 (
plain) (
tree)
|
|
# This migration comes from refinery_inquiries (originally 20101208082840)
class CreateInquiries < ActiveRecord::Migration
def up
unless ::Refinery::Inquiries::Inquiry.table_exists?
create_table :refinery_inquiries_inquiries, :force => true do |t|
t.string :name
t.string :email
t.string :phone
t.text :message
t.boolean :spam, :default => false
t.timestamps
end
add_index :refinery_inquiries_inquiries, :id
end
end
def down
drop_table ::Refinery::Inquiries::Inquiry.table_name
::Refinery::Page.delete_all({
:link_url => ("/contact" || "/contact/thank_you")
}) if defined?(::Refinery::Page)
end
end
|