mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
7 lines
No EOL
222 B
Text
7 lines
No EOL
222 B
Text
create_table("user_preferences") {
|
|
t.Column("id", "uuid", {primary: true})
|
|
t.Column("owner_id", "uuid", {})
|
|
t.Column("email_hour_of_day", "integer", {})
|
|
t.Column("time_zone_utc_offset", "integer", {})
|
|
t.Timestamps()
|
|
} |