1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/db/migrate/20170109120109_create_web_settings.rb

15 lines
272 B
Ruby

# frozen_string_literal: true
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