forked from Gitlink/forgeplus
6 lines
149 B
Ruby
6 lines
149 B
Ruby
|
|
class AddOpenDevopsToProjects < ActiveRecord::Migration[5.2]
|
||
|
|
def change
|
||
|
|
add_column :projects, :open_devops, :boolean, default: false
|
||
|
|
end
|
||
|
|
end
|