docbrown/db/migrate/20180502160428_add_email_digest_eligible_to_articles.rb
Ben Halpern f2101410ea
[WIP] Improve article boosting abilities and insights (#237)
* Update email subjects split test

* Create alternate editor

* Add proof of concept to emails

* Add utm for internal nav

* Add ability to boost in DEV Digest

* Adjust articles.scss

* Adjust article_form.scss

* Remove unnecessary files

* Remove files from PR

* Adjust boosted email settings

* Conditionally include organization in additional box

* Modify schema.rb
2018-05-02 12:24:54 -04:00

5 lines
167 B
Ruby

class AddEmailDigestEligibleToArticles < ActiveRecord::Migration[5.1]
def change
add_column :articles, :email_digest_eligible, :boolean, default: true
end
end