blob: d8eaca450b521943eda80ff1e608e798b9cb0eb7 (
plain) (
blame)
1
2
3
4
5
6
7
|
class AddUriToRelationships < ActiveRecord::Migration[5.2]
def change
add_column :follows, :uri, :string
add_column :follow_requests, :uri, :string
add_column :blocks, :uri, :string
end
end
|