~cytrogen/masto-fe

ref: 1d557305d2fbd53a8a0e66af4e46ccc84d597ce8 masto-fe/db/migrate/20160322193748_add_avatar_remote_url_to_accounts.rb -rw-r--r-- 200 bytes
1d557305 — Nick Schonning Enable Rubocop Style/FrozenStringLiteralComment (#23793) 2 years ago
                                                                                
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddAvatarRemoteURLToAccounts < ActiveRecord::Migration[4.2]
  def change
    add_column :accounts, :avatar_remote_url, :string, null: true, default: nil
  end
end