mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
2 years ago
committed by
GitHub
3 changed files with 13 additions and 1 deletions
@ -0,0 +1,9 @@ |
|||||
|
-- AlterEnum |
||||
|
BEGIN; |
||||
|
CREATE TYPE "DataSource_new" AS ENUM ('ALPHA_VANTAGE', 'EOD_HISTORICAL_DATA', 'GHOSTFOLIO', '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; |
Loading…
Reference in new issue