package models import ( "database/sql" "time" "github.com/google/uuid" "github.com/guregu/null" "gorm.io/gorm" ) var ( _ = time.Second _ = sql.LevelDefault _ = null.Bool{} _ = uuid.UUID{} ) /* DB Table Details ------------------------------------- CREATE TABLE `artist_profile` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL, `team` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL, `category` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id_UNIQUE` (`id`), KEY `fk_artist_profile_user1_idx` (`user_id`), CONSTRAINT `fk_artist_profile_user1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin JSON Sample ------------------------------------- { "id": 77, "user_id": 27, "team": "XLHSRWXmwBCNMeFIfdWaXvAlH", "category": "AMGgQlTPXiKLixvTwUQEPFYqv", "created_at": "2290-06-11T21:00:26.124293847+09:00", "updated_at": "2129-07-09T15:31:48.860108485+09:00", "deleted_at": "2287-10-03T02:34:10.581044283+09:00"} Comments ------------------------------------- [ 0] column is set for unsigned [ 1] column is set for unsigned */ // ArtistProfile struct is a row record of the artist_profile table in the metarare database type ArtistProfile struct { //[ 0] id ubigint null: false primary: true isArray: false auto: true col: ubigint len: -1 default: [] ID uint64 `gorm:"primary_key;AUTO_INCREMENT;column:id;type:ubigint;" json:"id"` //[ 1] user_id ubigint null: false primary: false isArray: false auto: false col: ubigint len: -1 default: [] UserID uint64 `gorm:"column:user_id;type:ubigint;" json:"user_id"` //[ 2] team varchar(128) null: true primary: false isArray: false auto: false col: varchar len: 128 default: [] Team null.String `gorm:"column:team;type:varchar;size:128;" json:"team"` //[ 3] category varchar(128) null: true primary: false isArray: false auto: false col: varchar len: 128 default: [] Category null.String `gorm:"column:category;type:varchar;size:128;" json:"category"` //[ 4] created_at timestamp null: false primary: false isArray: false auto: false col: timestamp len: -1 default: [CURRENT_TIMESTAMP] CreatedAt time.Time `gorm:"column:created_at;type:timestamp;default:CURRENT_TIMESTAMP;" json:"created_at"` //[ 5] updated_at timestamp null: false primary: false isArray: false auto: false col: timestamp len: -1 default: [CURRENT_TIMESTAMP] UpdatedAt time.Time `gorm:"column:updated_at;type:timestamp;default:CURRENT_TIMESTAMP;" json:"updated_at"` //[ 6] deleted_at timestamp null: true primary: false isArray: false auto: false col: timestamp len: -1 default: [] DeletedAt null.Time `gorm:"column:deleted_at;type:timestamp;" json:"deleted_at"` } var artist_profileTableInfo = &TableInfo{ Name: "artist_profile", Columns: []*ColumnInfo{ &ColumnInfo{ Index: 0, Name: "id", Comment: ``, Notes: `column is set for unsigned`, Nullable: false, DatabaseTypeName: "ubigint", DatabaseTypePretty: "ubigint", IsPrimaryKey: true, IsAutoIncrement: true, IsArray: false, ColumnType: "ubigint", ColumnLength: -1, GoFieldName: "ID", GoFieldType: "uint64", JSONFieldName: "id", ProtobufFieldName: "id", ProtobufType: "uint64", ProtobufPos: 1, }, &ColumnInfo{ Index: 1, Name: "user_id", Comment: ``, Notes: `column is set for unsigned`, Nullable: false, DatabaseTypeName: "ubigint", DatabaseTypePretty: "ubigint", IsPrimaryKey: false, IsAutoIncrement: false, IsArray: false, ColumnType: "ubigint", ColumnLength: -1, GoFieldName: "UserID", GoFieldType: "uint64", JSONFieldName: "user_id", ProtobufFieldName: "user_id", ProtobufType: "uint64", ProtobufPos: 2, }, &ColumnInfo{ Index: 2, Name: "team", Comment: ``, Notes: ``, Nullable: true, DatabaseTypeName: "varchar", DatabaseTypePretty: "varchar(128)", IsPrimaryKey: false, IsAutoIncrement: false, IsArray: false, ColumnType: "varchar", ColumnLength: 128, GoFieldName: "Team", GoFieldType: "null.String", JSONFieldName: "team", ProtobufFieldName: "team", ProtobufType: "string", ProtobufPos: 3, }, &ColumnInfo{ Index: 3, Name: "category", Comment: ``, Notes: ``, Nullable: true, DatabaseTypeName: "varchar", DatabaseTypePretty: "varchar(128)", IsPrimaryKey: false, IsAutoIncrement: false, IsArray: false, ColumnType: "varchar", ColumnLength: 128, GoFieldName: "Category", GoFieldType: "null.String", JSONFieldName: "category", ProtobufFieldName: "category", ProtobufType: "string", ProtobufPos: 4, }, &ColumnInfo{ Index: 4, Name: "created_at", Comment: ``, Notes: ``, Nullable: false, DatabaseTypeName: "timestamp", DatabaseTypePretty: "timestamp", IsPrimaryKey: false, IsAutoIncrement: false, IsArray: false, ColumnType: "timestamp", ColumnLength: -1, GoFieldName: "CreatedAt", GoFieldType: "time.Time", JSONFieldName: "created_at", ProtobufFieldName: "created_at", ProtobufType: "uint64", ProtobufPos: 5, }, &ColumnInfo{ Index: 5, Name: "updated_at", Comment: ``, Notes: ``, Nullable: false, DatabaseTypeName: "timestamp", DatabaseTypePretty: "timestamp", IsPrimaryKey: false, IsAutoIncrement: false, IsArray: false, ColumnType: "timestamp", ColumnLength: -1, GoFieldName: "UpdatedAt", GoFieldType: "time.Time", JSONFieldName: "updated_at", ProtobufFieldName: "updated_at", ProtobufType: "uint64", ProtobufPos: 6, }, &ColumnInfo{ Index: 6, Name: "deleted_at", Comment: ``, Notes: ``, Nullable: true, DatabaseTypeName: "timestamp", DatabaseTypePretty: "timestamp", IsPrimaryKey: false, IsAutoIncrement: false, IsArray: false, ColumnType: "timestamp", ColumnLength: -1, GoFieldName: "DeletedAt", GoFieldType: "null.Time", JSONFieldName: "deleted_at", ProtobufFieldName: "deleted_at", ProtobufType: "uint64", ProtobufPos: 7, }, }, } // TableName sets the insert table name for this struct type func (a *ArtistProfile) TableName() string { return "artist_profile" } // BeforeSave invoked before saving, return an error if field is not populated. func (a *ArtistProfile) BeforeSave(*gorm.DB) error { return nil } // Prepare invoked before saving, can be used to populate fields etc. func (a *ArtistProfile) Prepare() { } // Validate invoked before performing action, return an error if field is not populated. func (a *ArtistProfile) Validate(action Action) error { return nil } // TableInfo return table meta data func (a *ArtistProfile) TableInfo() *TableInfo { return artist_profileTableInfo }