Можете ли вы помочь мне понять, что еще мне нужно отредактировать или изменить здесь? У меня есть приложение Task и 3 модели: категория, пользователь и задача, они уже связаны. Приложение отлично работает на моем локальном компьютере, если вы хотите увидеть мои модели здесь:
class User < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
has_many :tasks
has_many :categories
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
end
class Task < ApplicationRecord
belongs_to :category
belongs_to :user
validates :title, presence: true,
length: { minimum: 3 }
validates :details, length: { minimum: 5 }
end
class Category < ApplicationRecord
has_many :tasks, :dependent => :destroy
belongs_to :user
validates :name, presence: true, uniqueness: true
end
Да! Вот так выглядит моя модель.
Я смог удалить свое приложение на героку, а затем запускаю это:
heroku run rake db:migrate
и получил это сообщение об ошибке:
StandardError: An error has occurred, this and all later migrations canceled:
PG::UndefinedColumn: ERROR: column "user_id" of relation "tasks" does not exist
Я проверил таблицу задач schema.rb и user_id.
ActiveRecord::Schema.define(version: 2020_12_09_004213) do
create_table "categories", force: :cascade do |t|
t.string "name"
t.text "description"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.integer "user_id"
end
create_table "tasks", force: :cascade do |t|
t.string "title"
t.text "details"
t.integer "category_id"
t.date "set_date"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.integer "user_id"
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
end```
Можете ли вы вставить весь журнал ошибок, который вы получаете от Heroku при запуске `heroku run rake db:migrate`? И в целом я имею в виду каждую строку
Я уже решил это.
Я только что удалил файл, который вызывает ошибку, есть файл миграции, который я создал, чтобы удалить user_id из таблицы задач. Rails предполагает, что столбец user_id был удален или не существует из-за файла миграции.
@Eyeslandic Я уже пробовал это, но тоже получил ошибку.
ActiveRecord::NoEnvironmentInSchemaError: Environment data not found in the schema. To resolve this issue, run: rails db:environment:set RAILS_ENV=production
и когда я запускаю rails db:environment:set RAILS_ENV=production, я получаю эту ошибкуArgumentError: Missing `secret_key_base` for 'production' environment, set this string with `rails credentials:edit