@@ 3,20 3,20 @@
diesel::table! {
actions (id) {
id -> Uuid,
- created_at -> Timestamp,
- updated_at -> Timestamp,
+ created_at -> Timestamptz,
+ updated_at -> Timestamptz,
game_data_id -> Uuid,
invoker -> Uuid,
data -> Json,
- timestamp -> Timestamp,
+ timestamp -> Timestamptz,
}
}
diesel::table! {
gamedata (id) {
id -> Uuid,
- created_at -> Timestamp,
- updated_at -> Timestamp,
+ created_at -> Timestamptz,
+ updated_at -> Timestamptz,
turn -> Int2,
host_hand -> Nullable<Json>,
host_deck -> Nullable<Json>,
@@ 41,8 41,8 @@ diesel::table! {
diesel::table! {
users (id) {
id -> Uuid,
- created_at -> Timestamp,
- updated_at -> Timestamp,
+ created_at -> Timestamptz,
+ updated_at -> Timestamptz,
username -> Varchar,
email -> Varchar,
password -> Varchar,