Skip to content

Commit

Permalink
Revert column name
Browse files Browse the repository at this point in the history
  • Loading branch information
sultaniman committed Jan 9, 2024
1 parent 0acdbc7 commit 0e77855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/website/docs/general-usage/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand All @@ -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 |
Expand Down

0 comments on commit 0e77855

Please sign in to comment.