10 lines
181 B
Ruby
10 lines
181 B
Ruby
|
class DeleteNameFromProjectInfo < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :project_infos, :name
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
add_column :project_infos, :name, :string
|
||
|
end
|
||
|
end
|