98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
16 lines
545 B
Ruby
16 lines
545 B
Ruby
# rubocop:disable all
|
|
class CreateUsersStarProjects < ActiveRecord::Migration
|
|
def change
|
|
create_table :users_star_projects do |t|
|
|
t.integer :project_id, null: false
|
|
t.integer :user_id, null: false
|
|
t.timestamps
|
|
end
|
|
add_index :users_star_projects, :user_id
|
|
add_index :users_star_projects, :project_id
|
|
add_index :users_star_projects, [:user_id, :project_id], unique: true
|
|
|
|
add_column :projects, :star_count, :integer, default: 0, null: false
|
|
add_index :projects, :star_count, using: :btree
|
|
end
|
|
end
|