Skip to content

Commit

Permalink
Merge pull request #189 from theopensystemslab/oz/remove-transaction-…
Browse files Browse the repository at this point in the history
…id-column

feat: remove `transaction_identifier` column from `prices_paid`
  • Loading branch information
zz-hh-aa authored Dec 20, 2024
2 parents ff3c966 + e3fa33e commit 37911a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "prices_paid" DROP COLUMN "transaction_identifier";
1 change: 0 additions & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ model ItlLookup {

model PricesPaid {
id Int @id @default(autoincrement())
transactionIdentifier String @map("transaction_identifier") @db.VarChar(250)
price Float
postcode String @db.VarChar(250)
propertyType String @map("property_type") @db.VarChar(250)
Expand Down

0 comments on commit 37911a2

Please sign in to comment.