We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great if we could set contraints on tables. For instance, something like this:
type Program struct { ID string `db:"program_id"` // ... stuff } type Exec struct { ID string `db:"exec_id"` ProgramID string `db:"program_id"` } func (r Exec) registerTable(dbMap *modl.DbMap) { execTbl:= dbMap.AddTable(r, "exec").SetKeys(false, "exec_id") execTbl.SetForeignKey("program_id", Program{}.ID). // what i'd like OnDelete(modl.Cascade). // going the extra mile OnUpdate(modl.Restrict) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great if we could set contraints on tables. For instance, something like this:
The text was updated successfully, but these errors were encountered: