Files
pgm/playground/db/branchuser/branch_users.go

21 lines
762 B
Go
Raw Normal View History

2025-10-18 14:43:42 +05:30
// Code generated by code.patial.tech/go/pgm/cmd DO NOT EDIT.
2025-07-26 18:34:56 +05:30
package branchuser
import "code.patial.tech/go/pgm"
const (
2025-10-18 14:43:42 +05:30
// All fields in table branch_users
All pgm.Field = "branch_users.*"
2025-07-26 18:34:56 +05:30
// BranchID field has db type "bigint NOT NULL"
BranchID pgm.Field = "branch_users.branch_id"
// UserID field has db type "bigint NOT NULL"
UserID pgm.Field = "branch_users.user_id"
// RoleID field has db type "smallint NOT NULL"
RoleID pgm.Field = "branch_users.role_id"
// CreatedAt field has db type "timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL"
CreatedAt pgm.Field = "branch_users.created_at"
// UpdatedAt field has db type "timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL"
UpdatedAt pgm.Field = "branch_users.updated_at"
)