6 lines
162 B
6 lines
162 B
5 years ago
|
class AddCommitMethodToExerciseUser < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :exercise_users, :commit_method, :integer, :default => 0
|
||
|
end
|
||
|
end
|