6 lines
135 B
Ruby
6 lines
135 B
Ruby
|
class AddEnterpriseNameToProjects < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :projects, :enterprise_name, :string
|
||
|
end
|
||
|
end
|