Initial work on support for multiple editors
This commit is contained in:
parent
7f955a4aca
commit
cd66a5db99
13 changed files with 140 additions and 72 deletions
|
@ -0,0 +1,9 @@
|
|||
class AddEditorPreferenceToUser < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :users, :preferred_editor, :string
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :users, :preferred_editor
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue