Sha256: 1261543b5b12fce59c782d96cb952cbecd9b489d3d44a21a72309f1fb1d0c58f

Contents?: true

Size: 970 Bytes

Versions: 13

Compression:

Stored size: 970 Bytes

Contents

# WontoMedia - a wontology web application
# Copyright (C) 2009 - Glen E. Ivey
#    www.wontology.com
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License version
# 3 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program in the file COPYING and/or LICENSE.  If not,
# see <http://www.gnu.org/licenses/>.


class RenameItemType < ActiveRecord::Migration
  def self.up
    change_table :items do |t|
      t.rename :type, :sti_type
    end
  end

  def self.down
    change_table :items do |t|
      t.rename :sti_type, :type
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
wontomedia-1.0.7 db/migrate/20090415142152_rename_item_type.rb
wontomedia-1.0.6 db/migrate/20090415142152_rename_item_type.rb
wontomedia-1.0.5 db/migrate/20090415142152_rename_item_type.rb
wontomedia-1.0.4 db/migrate/20090415142152_rename_item_type.rb
wontomedia-1.0.2 db/migrate/20090415142152_rename_item_type.rb
wontomedia-1.0.1 db/migrate/20090415142152_rename_item_type.rb
wontomedia-1.0.0 db/migrate/20090415142152_rename_item_type.rb
wontomedia-0.2.1 db/migrate/20090415142152_rename_item_type.rb
wontomedia-0.2.0 db/migrate/20090415142152_rename_item_type.rb
wontomedia-0.1.1 db/migrate/20090415142152_rename_item_type.rb
wontomedia-0.1.0 db/migrate/20090415142152_rename_item_type.rb
wontomedia-0.0.2 db/migrate/20090415142152_rename_item_type.rb
wontomedia-0.0.1 db/migrate/20090415142152_rename_item_type.rb