mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-27 12:31:29 -04:00
15 lines
370 B
YAML
15 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(),
|
|
})
|