Persist UI settings, add missing localizations for German
This commit is contained in:
parent
23ebf60b95
commit
75f80bef10
25 changed files with 305 additions and 67 deletions
12
db/migrate/20170109120109_create_web_settings.rb
Normal file
12
db/migrate/20170109120109_create_web_settings.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class CreateWebSettings < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
create_table :web_settings do |t|
|
||||
t.integer :user_id
|
||||
t.json :data
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_index :web_settings, :user_id, unique: true
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue