diff --git a/docs/website/docs/general-usage/schema.md b/docs/website/docs/general-usage/schema.md index ffe65cb964..c2688e8fc9 100644 --- a/docs/website/docs/general-usage/schema.md +++ b/docs/website/docs/general-usage/schema.md @@ -140,7 +140,7 @@ data = [ once pipeline runs we will have the following schema: -| field_name | data_type | nullable | +| name | data_type | nullable | | ------------- | ------------- | -------- | | id | bigint | true | | human_name | text | true | @@ -157,7 +157,7 @@ data = [ So after you run the pipeline `dlt` will automatically infer type changes and will add a new field in the schema `id__v_text` to reflect that new data type for `id` so for any type which is not compatible with integer it will create a new field. -| field_name | data_type | nullable | +| name | data_type | nullable | | ------------- | ------------- | -------- | | id | bigint | true | | human_name | text | true |