discourse/db/migrate/20120807223020_create_actions.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

27 lines
829 B
Ruby

# frozen_string_literal: true
class CreateActions < ActiveRecord::Migration[4.2]
def change
create_table :actions do |t|
# I elected for multiple ids as opposed to using :as cause it makes the table
# thinner, and the joining semantics much simpler (a simple multiple left join will do)
#
# There is a notificiation table as well that covers much of this,
# but this table is wider and is intended for non-notifying actions as well
t.integer :action_type, null: false
t.integer :user_id, null: false
t.integer :target_forum_thread_id
t.integer :target_post_id
t.integer :target_user_id
t.integer :acting_user_id
t.timestamps null: false
end
add_index :actions, [:user_id, :action_type]
add_index :actions, [:acting_user_id]
end
end