Sha256: a8310a7e2dafcb093bfdce054a3972e0066f81b0048e4416de6ad55e9443a15a
Contents?: true
Size: 436 Bytes
Versions: 2
Compression:
Stored size: 436 Bytes
Contents
class CreateOpenConferenceWareComments < ActiveRecord::Migration def change create_table :open_conference_ware_comments do |t| t.string "name" t.string "email" t.text "message" t.integer "proposal_id" t.datetime "created_at" t.datetime "updated_at" end add_index "open_conference_ware_comments", ["proposal_id"], name: "index_comments_on_proposal_id", using: :btree end end
Version data entries
2 entries across 2 versions & 1 rubygems