14 lines
370 B
YAML
14 lines
370 B
YAML
id: no-drizzle-column-name
|
|
valid:
|
|
- |
|
|
const table = sqliteTable("session", {
|
|
project_id: text().notNull(),
|
|
time_created: integer().notNull(),
|
|
payload: text({ mode: "json" }),
|
|
})
|
|
invalid:
|
|
- |
|
|
const table = sqliteTable("session", {
|
|
projectID: text("project_id").notNull(),
|
|
createdAt: integer("time_created").notNull(),
|
|
})
|