Sha256: 423b696c0664e761e21a961ef8e04845763b8b63e91aa6071ee6e4683e6c618c
Contents?: true
Size: 240 Bytes
Versions: 32
Compression:
Stored size: 240 Bytes
Contents
class ChangeInstitutionToCompany < ActiveRecord::Migration def up execute "UPDATE people SET type='Company' where type='Institution'" end def down execute "UPDATE people SET type='Institution' where type='Company'" end end
Version data entries
32 entries across 32 versions & 1 rubygems