6 lines
184 B
Ruby
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
|