Mercurial > hg > soundsoftware-site
view db/migrate/.svn/text-base/20091205124427_add_versions_sharing.rb.svn-base @ 842:899414bdd24e bug_366
Further adjustments to Documents, Files, Publications texts to clarify the difference between them
| author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
|---|---|
| date | Wed, 01 Feb 2012 11:45:54 +0000 |
| parents | 513646585e45 |
| children |
line wrap: on
line source
class AddVersionsSharing < ActiveRecord::Migration def self.up add_column :versions, :sharing, :string, :default => 'none', :null => false add_index :versions, :sharing end def self.down remove_column :versions, :sharing end end
