##// END OF EJS Templates
Migration to add identifier attribute on project....
Jean-Philippe Lang -
r394:006b8716ed0c
parent child
Show More
@@ -0,0 +1,9
1 class AddProjectIdentifier < ActiveRecord::Migration
2 def self.up
3 add_column :projects, :identifier, :string, :limit => 20
4 end
5
6 def self.down
7 remove_column :projects, :identifier
8 end
9 end
General Comments 0
You need to be logged in to leave comments. Login now