mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
change name of api_reponse to solar_api_response in solar table
This commit is contained in:
parent
d203bb9c27
commit
7148eefa8b
4 changed files with 1726 additions and 1 deletions
1
src/app/db/migrations/0072_plain_vapor.sql
Normal file
1
src/app/db/migrations/0072_plain_vapor.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE "solar" RENAME COLUMN "api_response" TO "google_api_response";
|
||||
1717
src/app/db/migrations/meta/0072_snapshot.json
Normal file
1717
src/app/db/migrations/meta/0072_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -505,6 +505,13 @@
|
|||
"when": 1720603508125,
|
||||
"tag": "0071_same_puppet_master",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 72,
|
||||
"version": "5",
|
||||
"when": 1720604604887,
|
||||
"tag": "0072_plain_vapor",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -25,7 +25,7 @@ export const Solar = pgTable("solar", {
|
|||
})
|
||||
.defaultNow()
|
||||
.notNull(),
|
||||
googleApiResponse: jsonb("api_response").notNull(),
|
||||
googleApiResponse: jsonb("google_api_response").notNull(),
|
||||
});
|
||||
|
||||
// Define types for selecting and inserting data
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue