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

10 lignes
202 B
Ruby
Brut Vue normale Historique

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