Sha256: f5c5c5879018c441273f4e4572f10854c116d5176c626a8ff89c62e07217a3b9
Contents?: true
Size: 412 Bytes
Versions: 2
Compression:
Stored size: 412 Bytes
Contents
class AddPristineFilesToCbacUpgradePath < ActiveRecord::Migration def self.up create_table :cbac_pristine_files do |t| t.string :type t.string :file_name t.timestamps null: false end add_column :cbac_staged_permissions, :pristine_file_id, :integer end def self.down drop_table :cbac_pristine_files remove_column :cbac_staged_permissions, :pristine_file_id end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cbac-0.8.0 | migrations/20110211105533_add_pristine_files_to_cbac_upgrade_path.rb |
cbac-0.7.0 | migrations/20110211105533_add_pristine_files_to_cbac_upgrade_path.rb |