1create_table("selfservice_errors") { 2 t.Column("id", "uuid", {primary: true}) 3 t.Column("errors", "json") 4 t.Column("seen_at", "timestamp") 5 t.Column("was_seen", "bool") 6}
View as plain text