Add after_party

This commit is contained in:
Paul Chavard 2018-07-18 15:45:23 +02:00
parent 5339ee43f5
commit c67f8dcaaa
7 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,7 @@
class CreateTaskRecords < ActiveRecord::Migration[5.2]
def change
create_table :task_records, id: false do |t|
t.string :version, null: false
end
end
end