Being able to update

CaptainMack

Member
Just wondering when the Reality branch is being updated - will it remain in same "style" as bliss? I mean, that we won't have to transfer databases and such to a new setup because it has been forked.
 
Just wondering when the Reality branch is being updated - will it remain in same "style" as bliss? I mean, that we won't have to transfer databases and such to a new setup because it has been forked.
That is correct, you will not need to transfer databases. The database schema is the same as in Bliss. However, You will need to remove all of your Bliss files, built folders and such from the server. The name Bliss has been replaced with Reality throughout and as such it builds everything under that name.
 
All I had to do to my existing Bliss database was run 1 line of SQL:
Code:
update migration_schema_version set name = 'Reality' where name = 'Bliss';
 
Back
Top