Implement missing & remaining pieces propagation + cleaner forms
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddMissingPiecesToCompletion < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :completions, :missing_pieces, :integer
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddCompletedToCompletion < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :completions, :completed, :boolean
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddSubmittedToOffline < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :offlines, :submitted, :boolean
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user