0 Tips for building a new database? 1 David Stevens posted 9 Years Ago Has anyone found a way to run Rock migrations faster? Using the core Rock:develop branch, there are a few hundred migrations that have to be run to set up a fresh database. Once the database is set up, I found that Backup Devices are the best way to quickly switch versions: The backup device can be referenced in a backup/restore statement: alter database [Rock] set single_user with rollback immediate restore database [Rock] from people with replace alter database [Rock] set multi_user When you switch to single_user mode, you'll drop all connections for a few seconds but this can be done in the background while VS/Rock is running.