heroku run rails db:migrateをしたら
Caused by:
ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: relation "users" does not exist
: CREATE TABLE "tasks" ("id" bigserial primary key, "content" character varying, "user_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, CONSTRAINT "fk_rails_4d2a9e4d7e"
FOREIGN KEY ("user_id")
REFERENCES "users" ("id")
こうなります。
僕はこの間間違えて必要な中間テーブルは用意していたのですが、
relationという入らない中間テーブルを作ってしまいました。
mysqlからrelationを消したのですが、まだこうなります。
どうしたらここのエラーが解消されるでしょうか?
回答待ってます。