5f34759ecb
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
5 lines
136 B
Ruby
5 lines
136 B
Ruby
class AddProjectViewToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :project_view, :integer, default: 0
|
|
end
|
|
end
|