add path and path_with_namespace to api project entity
This commit is contained in:
parent
563c55eb7e
commit
193a5624b2
17 changed files with 134 additions and 5 deletions
|
@ -0,0 +1,9 @@
|
|||
class RemovePrivateFlagFromProject < ActiveRecord::Migration
|
||||
def up
|
||||
remove_column :projects, :private_flag
|
||||
end
|
||||
|
||||
def down
|
||||
add_column :projects, :private_flag, :boolean, default: true, null: false
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue