Commit b8ef1170 authored by Will Cory's avatar Will Cory

🐛 fix: update prisma schema

parent b73b7c21
...@@ -4,7 +4,7 @@ generator client { ...@@ -4,7 +4,7 @@ generator client {
datasource db { datasource db {
provider = "postgresql" provider = "postgresql"
url = "postgresql://db_username:db_password@localhost:5434/db_name" url = env("DATABASE_URL")
} }
model l1_bridged_tokens { model l1_bridged_tokens {
...@@ -111,7 +111,7 @@ model l2_block_headers { ...@@ -111,7 +111,7 @@ model l2_block_headers {
hash String @id @db.VarChar hash String @id @db.VarChar
parent_hash String @unique @db.VarChar parent_hash String @unique @db.VarChar
number Decimal @unique @db.Decimal number Decimal @unique @db.Decimal
timestamp Int @unique timestamp Int
rlp_bytes String @db.VarChar rlp_bytes String @db.VarChar
l2_contract_events l2_contract_events[] l2_contract_events l2_contract_events[]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment