Sha256: 552129de37daa424e373f4c3a78bca0a156cf6622048ed085db893ae7a2de279
Contents?: true
Size: 596 Bytes
Versions: 93
Compression:
Stored size: 596 Bytes
Contents
class CreateContacts < ActiveRecord::Migration def change create_table "tenon_contacts" do |t| t.string "name" t.string "phone" t.string "email" t.text "content" t.string "user_ip" t.string "user_agent" t.string "referrer" t.boolean "read", default: false, null: false t.boolean "replied", default: false, null: false t.datetime "created_at" t.datetime "updated_at" end add_index "tenon_contacts", ["created_at"], name: "index_contacts_on_created_at", using: :btree end end
Version data entries
93 entries across 93 versions & 1 rubygems