mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
143 B
Ruby
6 lines
143 B
Ruby
class AddURLToStatuses < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :statuses, :url, :string, null: true, default: nil
|
|
end
|
|
end
|