Activity overview
Latest activity by Neosphere
AlexYates wrote: »
In theory you should be using source control in dev, not production. You should be deploying to production from source control, not retrospectively commiting changes to source control after they have been applied in prod. If what you are looking for is an audit log of changes you should look at DLM Dashboard instead.
With regards moving your source control to the pre-prod DB, the simple answer is to use something like SQL Compare to sync yp the schemas and then unlink prod and link pre-prod.
But as I mentioned, you really you should be doing that all the way down to dev and then using source code as the source of truth for all deployments to your test/pre-prod/prod dbs.
Sorry, I have not done this before yet.. / comments
AlexYates wrote: »
In theory you should be using source control in dev, not production. You should be deploying to production from source control, not retrospectively commiting changes to sourc...