Sha256: 64a143621aaae79739575eae6a9c6bea8dbde3b9363abf5913c5a5b3b8d0b690
Contents?: true
Size: 1.4 KB
Versions: 10
Compression:
Stored size: 1.4 KB
Contents
# -*- encoding : utf-8 -*- class AccountRequestsToSignups < Wagn::CoreMigration def up newname = 'Sign up' newname = '*signup' if Card.exists? newname #get old codename and name out of the way old_signup = Card[:signup] old_signup_name = old_signup.name old_signup.name = "#{newname} - old" old_signup.codename = nil old_signup.save! Card::Codename.reset_cache # rename Account Request to "Sign up" new_signup = Card[:account_request] new_signup.name = newname new_signup.update_referencers = true new_signup.codename = :signup new_signup.save! Card::Codename.reset_cache # move old "*signup+*thanks" to "Sign up+*type+*thanks" thanks = Card[:thanks] if signup_thanks = Card["#{old_signup.name}+#{thanks.name}"] signup_thanks.name = "#{new_signup.name}+#{Card[:type].name}+#{thanks.name}" signup_thanks.update_referencers = true signup_thanks.save! end # get rid of old signup card unless there is other data there (most likely +*subject and +*message) unless Card.search(:return=>:id, :left_id=>old_signup.id).first old_signup.delete! end # turn captcha off by default on signup rulename = [:signup, :type, :captcha].map { |code| Card[code].name } * '+' captcha_rule = Card.fetch rulename, :new=>{} captcha_rule.content = '0' captcha_rule.save! end end
Version data entries
10 entries across 10 versions & 1 rubygems