-
Notifications
You must be signed in to change notification settings - Fork 898
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(memory-store): Reformat migrations using sql-formatter
Signed-off-by: Diwank Singh Tomer <[email protected]>
- Loading branch information
Showing
23 changed files
with
298 additions
and
167 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,17 +1,27 @@ | ||
BEGIN; | ||
|
||
-- Drop the update_updated_at_column function | ||
DROP FUNCTION IF EXISTS update_updated_at_column(); | ||
DROP FUNCTION IF EXISTS update_updated_at_column (); | ||
|
||
-- Drop misc extensions | ||
DROP EXTENSION IF EXISTS "uuid-ossp" CASCADE; | ||
|
||
DROP EXTENSION IF EXISTS citext CASCADE; | ||
|
||
DROP EXTENSION IF EXISTS btree_gist CASCADE; | ||
|
||
DROP EXTENSION IF EXISTS btree_gin CASCADE; | ||
|
||
-- Drop timescale's pgai extensions | ||
DROP EXTENSION IF EXISTS ai CASCADE; | ||
|
||
DROP EXTENSION IF EXISTS vectorscale CASCADE; | ||
|
||
DROP EXTENSION IF EXISTS vector CASCADE; | ||
|
||
-- Drop timescaledb extensions | ||
DROP EXTENSION IF EXISTS timescaledb_toolkit CASCADE; | ||
|
||
DROP EXTENSION IF EXISTS timescaledb CASCADE; | ||
|
||
COMMIT; |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.