私が走るとき
$rspec "/any_file"
rspec が schema.rb ファイルにロードされ、データベースがセットアップされます。
私の理解では、この行に関しては
create_table "queue_classic_jobs", force: true do |t|; end
Rspec は
DROP TABLE "queue_classic_jobs"
指図。
このエラーが発生します
PG::DependentObjectsStillExist: ERROR: cannot drop table queue_classic_jobs because
other objects depend on it (ActiveRecord::StatementInvalid)
DETAIL: function lock_head(character varying) depends on type queue_classic_jobs
function lock_head(character varying,integer) depends on type queue_classic_jobs
HINT: Use DROP ... CASCADE to drop the dependent objects too.
: DROP TABLE "queue_classic_jobs"
私にはrspecを作らなければならないように見えます
DROP TABLE "queue_classic_jobs" CASCADE
しかし、どのように?