mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
a4dcaef53b
* Prepare Mastodon for zeitwerk autoloader (Rails 6) Add inflections and rename/move a few classes. In particular, app/lib/exceptions.rb and app/lib/sanitize_config.rb were manually loaded while still in autoload paths. * Add inflection for Url → URL
6 lines
132 B
Ruby
6 lines
132 B
Ruby
class AddDevicesURLToAccounts < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :accounts, :devices_url, :string
|
|
end
|
|
end
|