mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-30 12:49:43 +00:00
♻️ make source not null
This commit is contained in:
parent
a5b48ab392
commit
a534301eb7
2 changed files with 2 additions and 2 deletions
|
|
@ -727,7 +727,7 @@ export const blueprints = sqliteTable("blueprints", {
|
|||
})
|
||||
.notNull(),
|
||||
name: text("name").notNull(),
|
||||
source: text("source"),
|
||||
source: text("source").notNull(),
|
||||
createdAt: integer("createdAt").notNull(),
|
||||
succeeded: integer("succeeded", { mode: "boolean" }).notNull(),
|
||||
contents: text("contents").notNull(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue