# See http://doc.gitlab.com/ce/development/migration_style_guide.html# for more information on how to write migrations for GitLab.classAddSubmittedAsHamToSpamLogs<ActiveRecord::MigrationincludeGitlab::Database::MigrationHelpers# Set this constant to true if this migration requires downtime.DOWNTIME=false# When a migration requires downtime you **must** uncomment the following# constant and define a short and easy to understand explanation as to why the# migration requires downtime.# DOWNTIME_REASON = ''disable_ddl_transaction!defchangeadd_column_with_default:spam_logs,:submitted_as_ham,:boolean,default: falseendend