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