You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
341 B
13 lines
341 B
class CreateProjectTrends < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :project_trends do |t|
|
|
t.integer :user_id
|
|
t.integer :project_id
|
|
t.references :trend, polymorphic: true, index: true
|
|
t.string :action_type
|
|
t.timestamps
|
|
end
|
|
add_index :project_trends, [:user_id, :project_id]
|
|
end
|
|
end
|