-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f90d40
commit 86b473c
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class DropMetarIndex < ActiveRecord::Migration[7.1] | ||
def change | ||
remove_index :completions, name: "index_tds_metars_on_observation_time" | ||
add_index :tds_metars, :observation_time | ||
# remove_index :tds_metars, name: "index_tds_metars_on_observation_time" | ||
# add_index :tds_metars, :observation_time | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
class FixWxIndexes < ActiveRecord::Migration[7.1] | ||
disable_ddl_transaction! | ||
def change | ||
remove_index :tds_metars, name: "index_tds_metars_on_observation_time" | ||
add_index :tds_metars, :observation_time, algorithm: :concurrently | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters