github.com/Goboolean/common@v0.0.0-20231130153141-cb54596b217d/pkg/rdbms/models.go (about)

     1  // Code generated by sqlc. DO NOT EDIT.
     2  // versions:
     3  //   sqlc v1.19.1
     4  
     5  package rdbms
     6  
     7  import (
     8  	"database/sql"
     9  	"time"
    10  )
    11  
    12  type Platform struct {
    13  	Name        string
    14  	Description sql.NullString
    15  }
    16  
    17  type ProductMetum struct {
    18  	ID          string
    19  	Name        string
    20  	Symbol      string
    21  	Description sql.NullString
    22  	Type        string
    23  	Exchange    string
    24  	Location    sql.NullString
    25  }
    26  
    27  type ProductPlatform struct {
    28  	ProductID    string
    29  	PlatformName string
    30  	Identifier   string
    31  }
    32  
    33  type StoreLog struct {
    34  	ProductID string
    35  	StoredAt  time.Time
    36  	Status    string
    37  }
    38  
    39  type TestTable struct {
    40  	ID int32
    41  }