newsbox/migrations/20230111000350_create_user_email_verifications.up.fizz

6 lines
136 B
Text
Raw Normal View History

2023-02-15 16:56:06 +00:00
create_table("user_email_verifications") {
t.Column("id", "uuid", {primary: true})
t.Column("owner_id", "uuid", {})
t.Timestamps()
}