1 class AddWriteNotesPermission < ActiveRecord::Migration[4.2]
 
   3     add_column :oauth_tokens, :allow_write_notes, :boolean, :null => false, :default => false
 
   4     add_column :client_applications, :allow_write_notes, :boolean, :null => false, :default => false
 
   8     remove_column :client_applications, :allow_write_notes
 
   9     remove_column :oauth_tokens, :allow_write_notes