docbrown/db/migrate/20190502165056_add_cached_user_to_articles.rb
Ben Halpern 821d45104a
Create serialized cached user and cached organization for articles (#2658)
* Create cached user and cached organization for articles

* Remove pages table
2019-05-02 14:42:28 -04:00

6 lines
184 B
Ruby

class AddCachedUserToArticles < ActiveRecord::Migration[5.2]
def change
add_column :articles, :cached_user, :text
add_column :articles, :cached_organization, :text
end
end