mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
12 lines
350 B
Text
12 lines
350 B
Text
create_table("messages") {
|
|
t.Column("id", "uuid", {primary: true})
|
|
t.Column("owner_id", "uuid", {})
|
|
t.Column("from", "text", {})
|
|
t.Column("from_email", "text", {})
|
|
t.Column("to", "text", {})
|
|
t.Column("subject", "text", {})
|
|
t.Column("body", "text", {})
|
|
t.Column("body_html", "text", {})
|
|
t.Column("timestamp", "integer", {})
|
|
t.Timestamps()
|
|
}
|