20180416210259_add_uri_to_relationships.rb 237 B

123456789
  1. # frozen_string_literal: true
  2. class AddUriToRelationships < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :follows, :uri, :string
  5. add_column :follow_requests, :uri, :string
  6. add_column :blocks, :uri, :string
  7. end
  8. end