Sha256: 2ecce82ec8feb89d3256f84add30bb45e88742a80c2ff562ca69c852a49c180c

Contents?: true

Size: 240 Bytes

Versions: 1

Compression:

Stored size: 240 Bytes

Contents

class CreateContactForms < ActiveRecord::Migration
  def self.up
    create_table :contact_forms do |t|
      t.string :name
      t.string :comment

      t.timestamps
    end
  end

  def self.down
    drop_table :contact_forms
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bakedweb-model_notifier-0.2.0 test_rails_app/db/migrate/20090525200701_create_contact_forms.rb