class Avram::Migrator::DropForeignKeyStatement
Overview
Generates an ALTER TABLE statement for dropping a foreign key constraint on a table.
Usage
DropForeignKeyStatement.new(from: :comments, references: :users, column: :author_id).build
# => "ALTER TABLE comments DROP CONSTRAINT comments_author_id_fk;"