Sha256: 55833e796e836b943974deab8f08b8662a02b5777049a8e400ea02176a32b41b

Contents?: true

Size: 348 Bytes

Versions: 45

Compression:

Stored size: 348 Bytes

Contents

class CreateContacts < ActiveRecord::Migration
  
  def self.up
    create_table :contacts do |t|
      t.string :sender_name
      t.string :sender_email
      t.text :body
      
      t.timestamps
    end
    add_index :contacts, :updated_at
  end
  
  def self.down
    drop_table :contacts
    remove_index :contacts, :updated_at
  end
  
end

Version data entries

45 entries across 45 versions & 2 rubygems

Version Path
tkh_content-0.9.13 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.12 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.11 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.10 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.9 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.8 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.7 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.6 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.5 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.4 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.3 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.2 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.4.7 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9.1 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.9 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.4.6 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.4.5 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.4.4 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.4.3 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb
tkh_content-0.4.2 lib/generators/tkh_content/create_or_update_migrations/templates/create_contacts.rb