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
refactor(chain)!: change String by &str for versioned scripts in migrate_schema
`&str` is documenting clearly that `migrate_schema` should only read
`versioned_strings`.
Also, as `schema_vN` methods will return `String`, rust will always
automatically deref `&String` to `&str`.
BREAKING CHANGE: changes parameter versioned_strings from public
function migrate_schema from type &[String] to &[&str].
0 commit comments