newsbox/migrations/20230110004501_create_messages.up.fizz
Adriano Caloiaro 8ae801ae5f
Initial commit
2023-02-15 08:57:48 -08:00

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()
}