1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-08-07 21:06:46 +02:00
redmine/db/migrate/037_add_project_identifier.rb

10 linhas
202 B
Ruby
Original Visão normal Histórico

class AddProjectIdentifier < ActiveRecord::Migration
def self.up
add_column :projects, :identifier, :string, :limit => 20
end
def self.down
remove_column :projects, :identifier
end
end