Discover Packages
github.com/biisal/rowsql
internal
database
models
package
Version:
v0.1.2
Opens a new window with list of versions in this module.
Published: Jan 16, 2026
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
Package models conatains the models of database qureies and forms
type FormValue struct {
Value string `json:"value"`
Type string `json:"type"`
}
type History struct {
ID int `json:"id"`
Message string `json:"message"`
Time time .Time `json:"time"`
}
type ListDataCol struct {
IsUnique bool `json:"isUnique"`
Value any `json:"value"`
ColumnName string `json:"columnName"`
DataType string `json:"dataType"`
InputType string `json:"inputType"`
HasAutoIncrement bool `json:"hasAutoIncrement"`
HasDefault bool `json:"hasDefault"`
}
type ListDataProps struct {
TableName string `json:"tableName"`
Limit int `json:"limit"`
Offset int `json:"offset"`
Column string `json:"column"`
Order string `json:"order"`
}
type ListTablesRow struct {
TableSchema string `json:"tableSchema"`
TableName string `json:"tableName"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.