diff --git a/cmd/internal/planetscale_edge_mysql.go b/cmd/internal/planetscale_edge_mysql.go index 079c589..19cbf2c 100644 --- a/cmd/internal/planetscale_edge_mysql.go +++ b/cmd/internal/planetscale_edge_mysql.go @@ -216,7 +216,7 @@ func getJsonSchemaType(mysqlType string) StreamProperty { return StreamProperty{Types: []string{"null", "boolean"}} case "date": return StreamProperty{Types: []string{"null", "string"}} - case "datetime": + case "datetime", "timestamp": return StreamProperty{Types: []string{"null", "string"}, CustomFormat: "date-time"} default: return StreamProperty{Types: []string{"null", "string"}}