DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: beeae2945d50008126c91cdccbdc5a53f9cdb18e deck-builder/sdbapi/models/action.go -rw-r--r-- 609 bytes
beeae294Jonni Liljamo WIP(sdbapi): actions table 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"`
}