I'm getting this error when trying to add a new page from the dashboard with refinerycms
SQLite3::ConstraintException: refinery_page_translations.refinery_page_id may not be NULL: INSERT INTO "refinery_page_translations" ("created_at", "custom_slug", "locale", "menu_title", "refinery_page_id", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)
with the next gemfile
gem 'rails', '3.2.14'
group :development, :test do gem 'sqlite3' end
group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3' end
gem 'jquery-rails','~> 2.3.0'
gem 'refinerycms', '~> 2.1.0'
db:seed
bundling with refinerycms without errors? – kasperiterake db:seed
with similar errors.SQLite3::ConstraintException: refinery_page_translations.refinery_page_id may not be NULL:.....
– CJBrew