20160222122600_create_stream_entries.rb 278 B

12345678910111213
  1. # frozen_string_literal: true
  2. class CreateStreamEntries < ActiveRecord::Migration[4.2]
  3. def change
  4. create_table :stream_entries do |t|
  5. t.integer :account_id
  6. t.integer :activity_id
  7. t.string :activity_type
  8. t.timestamps null: false
  9. end
  10. end
  11. end