Sha256: 3e525b5a7a962a1fde48bec700e048bedeb87e965eb1ce9f1d8dadd330db787f

Contents?: true

Size: 336 Bytes

Versions: 1

Compression:

Stored size: 336 Bytes

Contents

class CreateDiscussionThreads < ActiveRecord::Migration
  def change
    create_table :discussion_threads do |t|
      t.string :subject
      t.integer :initiator_id
      t.datetime :last_posted_at
      t.integer :total_comments_post, default: 0

      t.timestamps
    end

    add_index :discussion_threads, :initiator_id
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
discussion-0.0.1 db/migrate/20130501074817_create_discussion_threads.rb