ADD a column

This commit is contained in:
Jasder 2020-07-14 15:33:32 +08:00
parent 2b6fe8f9a8
commit 4d9b8738d8
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddOpenDevopsToProjects < ActiveRecord::Migration[5.2]
def change
add_column :projects, :open_devops, :boolean, default: false
end
end