metamaps--metamaps/db/migrate/20170209215911_create_follow_reasons.rb
Connor Turland b0deafc53e Follows and some new notifications (#1063)
* all the good changes

* follows

* dont send duplicates

* remove follow_type for now

* dont add all the extra stuff we're not implementing yet

* refactor

* lots of fixes

* Delete activity.html.erb

* Delete activity.text.erb

* Update 20170209215819_create_follows.rb

* Update schema.rb

* Update mapping.rb

* Update mailboxer.rb
2017-02-11 00:20:42 -05:00

15 lines
371 B
Ruby

class CreateFollowReasons < ActiveRecord::Migration[5.0]
def change
create_table :follow_reasons do |t|
t.references :follow, index: true
t.boolean :created
t.boolean :contributed
t.boolean :commented
t.boolean :followed
t.boolean :shared_on
t.boolean :starred
t.timestamps
end
end
end