mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
51b3aea49a
finxing typo, fixied failing test fixing mistakenly commited file fixing schema to include bigint migration
16 lines
491 B
Ruby
16 lines
491 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddUniqueIndexOnUserProjects < ActiveRecord::Migration[5.1]
|
|
def up
|
|
# firstly delete the duplicates
|
|
execute 'WITH uniq AS
|
|
(SELECT DISTINCT ON (user_id, project_id) * FROM user_projects)
|
|
DELETE FROM user_projects WHERE user_projects.id NOT IN
|
|
(SELECT id FROM uniq)'
|
|
add_index :user_projects, %i(user_id project_id), unique: true
|
|
end
|
|
|
|
def down
|
|
remove_index :user_projects, columns: %i(user_id project_id)
|
|
end
|
|
end
|