gitlab-org--gitlab-foss/db/migrate/20161017095000_add_properti...

10 lines
194 B
Ruby
Raw Normal View History

class AddPropertiesToDeployment < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
2016-10-17 13:34:30 +00:00
add_column :deployments, :on_stop, :string
end
end