DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 13e933c72fcd6452004fa3d7ffb40dd552e180a2 deck-builder/sdbapi/models/action.go -rw-r--r-- 609 bytes
13e933c7Jonni Liljamo chore(sdbapi): update dependencies and Go to 1.20 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"`
}