I want to setup production and development versions of my apps, as described in Best Version Control Options. I understand the concepts, but I’m a bit hazy on how data tables work with clones.
When I clone an app that has data tables, the clone seems to get its own copy of those data tables (at least, rows inserted into one don’t show in the other).
So, the question. If I have several apps that share data tables, and I want to create production versions of those apps, it seems as if I would need to:
-
Clone each app individually. This would give each its own (non-shared) copy of the data tables, right?
-
Delete the shared tables from all the apps except one, and then add them back to the other apps as shared tables so all the production apps are working off the same tables.
Am I missing something that’s going to make things more difficult than that?