-
Notifications
You must be signed in to change notification settings - Fork 19
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
Vik Fearing
committed
Sep 12, 2019
1 parent
723f0b5
commit a658893
Showing
4 changed files
with
21 additions
and
3 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
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,3 +1,13 @@ | ||
/* Once support for 9.5 has passed, use CASCADE */ | ||
CREATE EXTENSION IF NOT EXISTS btree_gist; | ||
CREATE EXTENSION periods; | ||
/* Once support for 9.6 has passed, just create the extension */ | ||
CREATE EXTENSION periods VERSION '1.0'; | ||
ALTER EXTENSION periods UPDATE TO '1.1'; | ||
SELECT extversion | ||
FROM pg_extension | ||
WHERE extname = 'periods'; | ||
extversion | ||
------------ | ||
1.1 | ||
(1 row) | ||
|
Empty file.
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,3 +1,9 @@ | ||
/* Once support for 9.5 has passed, use CASCADE */ | ||
CREATE EXTENSION IF NOT EXISTS btree_gist; | ||
CREATE EXTENSION periods; | ||
/* Once support for 9.6 has passed, just create the extension */ | ||
CREATE EXTENSION periods VERSION '1.0'; | ||
ALTER EXTENSION periods UPDATE TO '1.1'; | ||
|
||
SELECT extversion | ||
FROM pg_extension | ||
WHERE extname = 'periods'; |