Sha256: 7b432c759547146ed34342c82c7b445adbafeb0e261bc79521b8cebb8a66b7c4
Contents?: true
Size: 372 Bytes
Versions: 154
Compression:
Stored size: 372 Bytes
Contents
class AddWorkspaceDesc < ActiveRecord::Migration def self.up change_table :workspaces do |t| t.string :description, :limit => 4096 end change_table :hosts do |t| t.string :comments, :limit => 4096 end end def self.down change_table :workspaces do |t| t.remove :description end change_table :hosts do |t| t.remove :comments end end end
Version data entries
154 entries across 154 versions & 1 rubygems