class <%= class_name %>Migration < Scrivito::Migration def up # This migration file allows to change the CMS content programmatically. # All Scrivito SDK classes and methods are available and arbitrary Ruby code can be executed. # # Use `bundle exec rake scrivito:migrate` to run all migrations that are new to the `rtc` workspace. # Migrations are identified by an ID and only get executed once. If you migrate the CMS an # existing `rtc` workspace is used or a new `rtc` workspace is created. Only one developer at a # time can run migrations, which means to quickly try to publish the current migrations. # # Use `bundle exec rake scrivito:migrate:publish` to publish your `rtc` workspace that holds the # latest unpublished migrations. end end