blob: 2aeae1f919438c0e9cb934547d0676c04cf5f5d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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
|