remindrs/src/schema.rs
finga 665015c296 Basic minimal prototype
Use a postgres database as storage and start with sone basic
functionality.
2023-01-24 00:38:50 +01:00

14 lines
291 B
Rust

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