iTanken
iTanken
**Is your feature request related to a problem? Please describe.** Before v1.8.2, using `swag fmt` command will not delete the preset space between `//` and `@`, and the format in...
## Explain your user case and expected results In SQL Server, when re-migrating existing tables, even unchanged fields without default values will be forcefully re-migrated.
- [x] Do only one thing - [x] Non breaking API changes - [x] Tested ### What did this pull request do? `column.DefaultValueValue.Valid = true` causes almost all fields that...
https://github.com/go-gorm/sqlserver/blob/ef8f762cc01457cd331d3d93cf5648f2d8dc5661/sqlserver.go#L188-L202 - https://learn.microsoft.com/zh-cn/sql/t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql?view=sql-server-ver16 Because in SQL Server, the range of values for the `tinyint` type is from `0` to `255`, which exactly matches the range of `uint8`, so when `field.Size...
* chore: bump github.com/gin-contrib/gzip to v1.0.1 * chore: bump github.com/gin-gonic/gin to v1.10.0 * chore: bump github.com/stretchr/testify to v1.9.0 * chore: bump github.com/swaggo/swag to v1.16.3 * chore: bump golang.org/x/net to v0.25.0
## Explain your user case and expected results ```sql ALTER TABLE "table_column_default" ALTER COLUMN "type" int DEFAULT 1 NULL ``` got error: `mssql: 关键字 'DEFAULT' 附近有语法错误。`
```shell go run golang.org/x/vuln/cmd/govulncheck@latest ./... ``` - Output: === Symbol Results === Vulnerability #1: GO-2024-2682 Denial of service via connection starvation in github.com/quic-go/quic-go - More info: https://pkg.go.dev/vuln/GO-2024-2682 - Module: github.com/quic-go/quic-go...
- [x] Do only one thing - [x] Non breaking API changes - [x] Tested ### What did this pull request do? Support to set the field comment according to...