From d90da7d080d25355290e5d5e86c2c918d685add7 Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 9 Feb 2022 17:59:43 +0100 Subject: Add content_type to status_edits --- db/migrate/20220209175231_add_content_type_to_status_edits.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20220209175231_add_content_type_to_status_edits.rb (limited to 'db/migrate') diff --git a/db/migrate/20220209175231_add_content_type_to_status_edits.rb b/db/migrate/20220209175231_add_content_type_to_status_edits.rb new file mode 100644 index 000000000..0e4e52fcb --- /dev/null +++ b/db/migrate/20220209175231_add_content_type_to_status_edits.rb @@ -0,0 +1,5 @@ +class AddContentTypeToStatusEdits < ActiveRecord::Migration[6.1] + def change + add_column :status_edits, :content_type, :string + end +end -- cgit