You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 5 of the output states that a new environment `dev` will be created from the existing `prod` environment.
358
+
Line 6 of the output states that a new environment `dev` will be created from the existing `prod` environment.
358
359
359
-
Lines 7-13 summarize the differences between the modified model and the `prod` environment, detecting that we directly modified `incremental_model` and that `full_model` was indirectly modified because it selects from the incremental model. Note that the model schemas are `sqlmesh_example__dev`, indicating that they are being created in the `dev` environment.
360
+
Lines 8-14 summarize the differences between the modified model and the `prod` environment, detecting that we directly modified `incremental_model` and that `full_model` was indirectly modified because it selects from the incremental model. Note that the model schemas are `sqlmesh_example__dev`, indicating that they are being created in the `dev` environment.
360
361
361
-
On line 27, we see that SQLMesh automatically classified the change as `Non-breaking` because it understood that the change was additive (added a column not used by `full_model`) and did not invalidate any data already in `prod`.
362
+
On line 28, we see that SQLMesh automatically classified the change as `Non-breaking` because it understood that the change was additive (added a column not used by `full_model`) and did not invalidate any data already in `prod`.
362
363
363
-
Hit `Enter` at the prompt to backfill data from our start date `2020-01-01`. Another prompt will appear asking for a backfill end date; hit `Enter` to backfill until now. Finally, enter `y` and press `Enter` to apply the plan and execute the backfill:
364
+
Enter `y` at the prompt and press `Enter` to apply the plan and execute the backfill:
364
365
365
366
```bash linenums="1"
366
-
Enter the backfill start date (eg. '1 year', '2020-01-01') or blank to backfill from the beginning of history:
367
-
Enter the backfill end date (eg. '1 month ago', '2020-01-01') or blank to backfill up until now:
0 commit comments