blob: 4fd4c69fa408c74b0544602f20282f6925776558 [file] [log] [blame]
package schema
// ShortcutSchema represents the SQL schema of the Shortcuts table.
type ShortcutSchema struct {
ID string `sql:"id TEXT UNIQUE NOT NULL PRIMARY KEY"`
// TraceIDs is a shortcut.Shortcut serialized as JSON.
TraceIDs string `sql:"trace_ids TEXT"`
}