Denys
Denys
Example: ``` a, _ := decimal.NewFromString("166.6666666666666667") b := decimal.NewFromFloat(166.6666666666666667) fmt.Println(a.Equal(b)) // false println(a.String()) // 166.6666666666666667 println(b.String()) // 166.66666666666666 ``` Play with it: https://go.dev/play/p/isV9ODqEy5u The same for: ``` decimal.NewFromFloatWithExponent(166.6666666666666667, -16) ```...
Updated old migrations (for update between keto 0.7 and 0.8) Table `networks` don't have column `nit`:  So correct query should be ``` DELETE FROM keto_relation_tuples WHERE nid NOT IN...