remindrs/src/schema.rs

14 lines
291 B
Rust
Raw Normal View History

// @generated automatically by Diesel CLI.
diesel::table! {
reminders (id) {
id -> Int4,
created -> Timestamptz,
planned -> Timestamptz,
executed -> Nullable<Timestamptz>,
title -> Text,
message -> Text,
receiver -> Text,
}
}