2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-09 13:00:55 +00:00
|
|
|
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
|