Skip to content

Reserved keywords in the sql causing problems #13

@zeebo

Description

@zeebo

The schema to create the table for the following model fails on sqlite3:

model entry (
	key   pk
	field pk   serial64
	field when utimestamp
)

The problem is when is a keyword and confuses things. There's a workaround: just add a column directive like

model entry (
	key   pk
	field pk   serial64
	field when utimestamp (column _when)
)

but it'd be nice if DBX did this for you.

Metadata

Metadata

Assignees

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions