FEATURE: Show an email icon beside posts that arrived via email

This commit is contained in:
Robin Ward
2014-09-04 13:04:22 -04:00
parent e182604c50
commit 1c5e8efa68
8 changed files with 29 additions and 4 deletions

View File

@ -0,0 +1,5 @@
class AddViaEmailToPosts < ActiveRecord::Migration
def change
add_column :posts, :via_email, :boolean, default: false, null: false
end
end