Feature/remove ghostfolio as data source type (#1717)
* Remove GHOSTFOLIO * Update changelog
This commit is contained in:
parent
85052bc9bc
commit
851401be1e
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Changed
|
||||
|
||||
- Beautified the ETF names in the asset profile
|
||||
- Removed the data source type `GHOSTFOLIO`
|
||||
|
||||
### Fixed
|
||||
|
||||
|
@ -0,0 +1,9 @@
|
||||
-- AlterEnum
|
||||
BEGIN;
|
||||
CREATE TYPE "DataSource_new" AS ENUM ('ALPHA_VANTAGE', 'EOD_HISTORICAL_DATA', 'GOOGLE_SHEETS', 'MANUAL', 'RAPID_API', 'YAHOO');
|
||||
ALTER TABLE "MarketData" ALTER COLUMN "dataSource" TYPE "DataSource_new" USING ("dataSource"::text::"DataSource_new");
|
||||
ALTER TABLE "SymbolProfile" ALTER COLUMN "dataSource" TYPE "DataSource_new" USING ("dataSource"::text::"DataSource_new");
|
||||
ALTER TYPE "DataSource" RENAME TO "DataSource_old";
|
||||
ALTER TYPE "DataSource_new" RENAME TO "DataSource";
|
||||
DROP TYPE "DataSource_old";
|
||||
COMMIT;
|
@ -206,7 +206,6 @@ enum AssetSubClass {
|
||||
enum DataSource {
|
||||
ALPHA_VANTAGE
|
||||
EOD_HISTORICAL_DATA
|
||||
GHOSTFOLIO
|
||||
GOOGLE_SHEETS
|
||||
MANUAL
|
||||
RAPID_API
|
||||
|
Loading…
x
Reference in New Issue
Block a user