table! { blocks (id) { id -> Uuid, user_id -> Uuid, block_type -> Varchar, props -> Json, children -> Nullable>, created_at -> Timestamp, updated_at -> Timestamp, } } table! { migration_versions (id) { id -> Int4, version -> Varchar, } } table! { unverifiedusers (id) { id -> Varchar, email -> Nullable, discord_only_account -> Nullable, discord_id -> Nullable, password_hash -> Nullable, verification_token -> Nullable, created_at -> Timestamp, updated_at -> Timestamp, } } table! { users (id) { id -> Uuid, discord_id -> Varchar, created_at -> Timestamp, updated_at -> Timestamp, } } allow_tables_to_appear_in_same_query!( blocks, migration_versions, unverifiedusers, users, );