DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

beeae2945d50008126c91cdccbdc5a53f9cdb18e — Jonni Liljamo 1 year, 8 months ago 6a27c6c
WIP(sdbapi): actions table
1 files changed, 25 insertions(+), 0 deletions(-)

A sdbapi/models/action.go
A sdbapi/models/action.go => sdbapi/models/action.go +25 -0
@@ 0,0 1,25 @@
/*
 * This file is part of sdbapi
 * Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

package models

import (
	"time"

	"gorm.io/gorm"
)

type Action struct {
	ID        string `json:"id" gorm:"primarykey;type:uuid;default:gen_random_uuid()"`
	CreatedAt time.Time
	UpdatedAt time.Time
	DeletedAt gorm.DeletedAt `gorm:"index"`
	Game      Game           `json:"game" gorm:"foreignkey:ID"`
	Invoker   User           `json:"invoker" gorm:"foreignkey:ID"`
	Timestamp time.Time      `json:"timestamp" gorm:"type:timestamptz"`
}