Merge branch 'master' into fix/category-regex

This commit is contained in:
Alexandre BODIN 2019-12-19 10:28:06 +01:00 committed by GitHub
commit 82b8a2619c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,6 +132,16 @@ Run the following statement in your database:
::: :::
:::: ::::
## Date type changes
We introduced new types in the admin panel: `date`, `datetime` and `time`. Before all of those types where saved as `datetime`.
You will need to change the type of your fields from `date` to `datetime` if you don't want to migrate your data.
- To migrate yout old `date` to `datetime`, change the field type from `date` to `datetime`. NO data migration is required.
- To migrate your old `date` to new `date`, you will need to migrate yout data to be of the format: `YYYY-MM-DD`
- To migrate your old `date` to the new `time`, change the field type from `date` to `time`. You will also need to transform them to be of the format: `HH:mm:ss.SSS`
## Groups become Components ## Groups become Components
If you were using the groups feature you will need to apply some changes: If you were using the groups feature you will need to apply some changes: