chore: move unique index to end of statement to test if it gets properly

defined in host application
This commit is contained in:
Nelson Jovel 2024-02-09 15:43:27 -08:00
parent d35b75f577
commit d9ff6252b6
2 changed files with 2 additions and 2 deletions

View file

@ -6,6 +6,6 @@ class CreateDashboardAcademicYears < ActiveRecord::Migration[7.1]
t.timestamps
end
add_index :dashboard_academic_years, :range, unique: true, name: "dashboard_range"
add_index :dashboard_academic_years, :range, name: "dashboard_range", unique: true
end
end

View file

@ -1,3 +1,3 @@
module Dashboard
VERSION = "0.1.15"
VERSION = "0.1.16"
end