Add database row to hold status content type

This commit is contained in:
Thibaut Girka
2019-05-12 20:14:35 +02:00
committed by ThibG
parent c1cf8c1636
commit bfc509f44a
3 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddContentTypeToStatuses < ActiveRecord::Migration[5.2]
def change
add_column :statuses, :content_type, :string
end
end