mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
13 lines
241 B
Ruby
13 lines
241 B
Ruby
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
|