blob: de796d6d1ac0f7230ae8c49745dc9567d29a8c7a (
plain)
1
2
3
4
5
6
7
8
9
|
class AddProjectIdentifier < ActiveRecord::Migration[4.2]
def self.up
add_column :projects, :identifier, :string, :limit => 20
end
def self.down
remove_column :projects, :identifier
end
end
|