Sha256: 255e0defc094d86424485f8bdb3db640cec80f346280c86587a14c110d8bf1a3

Contents?: true

Size: 336 Bytes

Versions: 3

Compression:

Stored size: 336 Bytes

Contents

# -*- encoding : utf-8 -*-

class DeleteOldRelatedTabCards < Wagn::Migration
  def up
    [
      '*related',
      '*incoming',
      '*outgoing',
      '*community',
      '*plusses',
      'watcher instructions for related tab'
    ].each do |name|
      c = Card[name]
      c.codename = nil
      c.delete!
    end      
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wagn-1.14.0.pre3 db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb
wagn-1.14.0.pre2 db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb
wagn-1.14.0.pre1 db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb