mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
5 lines
136 B
Text
5 lines
136 B
Text
create_table("user_email_verifications") {
|
|
t.Column("id", "uuid", {primary: true})
|
|
t.Column("owner_id", "uuid", {})
|
|
t.Timestamps()
|
|
}
|