Skip to content

Commit

Permalink
Update summary comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed Jan 30, 2024
1 parent bcc8cc1 commit 4df1b1d
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions robot-server/robot_server/persistence/_migrations/up_to_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@
Summary of changes from schema 2:
- Run commands were formerly stored as monolithic blobs in the run table,
- Run commands were formerly stored as monolithic blobs in the `run` table,
with each row storing an entire list. This has been split out into a new
run_command table, where each individual command gets its own row.
`run_command` table, where each individual command gets its own row.
- All columns that were storing binary pickles have been converted to storing
JSON strings:
- `analysis.completed_analysis`
- `run.state_summary`
- `run_commands.command` (formerly `run.commands`; see above)
- `analysis.completed_analysis_as_document` has been removed,
since the updated `analysis.completed_analysis` (see above) replaces it.
"""


Expand Down

0 comments on commit 4df1b1d

Please sign in to comment.