In this example below the references is giving me an issue and as per Drizzle Documenation I am supposed to use a type called AnySQLiteColumn
const Objective = defineTable({
columns: {
id: column.text({
primaryKey: true,
default: sqluuid(),
}),
parentObjectiveId: column.text({
references: (): => Objective.columns.id,
optional: true,
}),