DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

c96ed6d8ad2593f9f38900ffbed0fb2791c7d6f0 — Jonni Liljamo 1 year, 8 months ago d154435
fix(api): timestamp -> timestamptz
1 files changed, 7 insertions(+), 7 deletions(-)

M api/src/schema.rs
M api/src/schema.rs => api/src/schema.rs +7 -7
@@ 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,