- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我刚刚向模型添加了全局化(使用 globalize gem)。
模型:
class Information::Blog::Post < ApplicationRecord
self.table_name = 'information_blog_posts'
translates :title, :subtitle
end
迁移:
class CreateInformationBlogPosts < ActiveRecord::Migration[5.1]
def change
create_table :information_blog_posts do |t|
t.references :author, index: true
t.datetime :published_at
t.timestamps
end
end
def up
Information::Blog::Post.create_translation_table! title: { type: :string, null: false }, subtitle: { type: :string, null: false }
end
def down
Information::Blog::Post.drop_translation_table!
end
end
现在,在我的种子中我添加了这一行:
post = Information::Blog::Post.create(id: 1, author_id: 1, title: 'Test', subtitle: 'Test test test test', locale: 'en')
它完美地植入了我的本地 MySQL 数据库。不过,在部署到 heroku 之后,重置和迁移 我的 postres 生产数据库,我在为数据库做种时遇到以下错误:
rails aborted!
ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: relation "information_blog_post_translations" does not exist
LINE 8: WHERE a.attrelid = '"information_blog_post_tr...
^
: SELECT a.attname, format_type(a.atttypid, a.atttypmod),
pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod,
c.collname, col_description(a.attrelid, a.attnum) AS comment
FROM pg_attribute a
LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_collation c ON a.attcollation = c.oid AND a.attcollation <> t.typcollation
WHERE a.attrelid = '"information_blog_post_translations"'::regclass
AND a.attnum > 0 AND NOT a.attisdropped
ORDER BY a.attnum
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:85:in `async_exec'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:85:in `block (2 levels) in query'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies/interlock.rb:46:in `block in permit_concurrent_loads'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/concurrency/share_lock.rb:185:in `yield_shares'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies/interlock.rb:45:in `permit_concurrent_loads'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:84:in `block in query'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:612:in `block (2 levels) in log'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:611:in `block in log'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:603:in `log'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:83:in `query'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql_adapter.rb:775:in `column_definitions'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:166:in `columns'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/schema_cache.rb:67:in `columns'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/schema_cache.rb:73:in `columns_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/model_schema.rb:451:in `load_schema!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/attributes.rb:233:in `load_schema!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/attribute_decorators.rb:50:in `load_schema!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/model_schema.rb:446:in `load_schema'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/model_schema.rb:339:in `columns_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/table_metadata.rb:39:in `has_column?'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:91:in `block in create_binds_for_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:89:in `each'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:89:in `create_binds_for_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:34:in `create_binds'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/where_clause_factory.rb:21:in `build'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/query_methods.rb:612:in `where!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/query_methods.rb:605:in `where'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:69:in `last_chain_scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:126:in `add_constraints'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:28:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:5:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association.rb:97:in `association_scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association.rb:86:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_association.rb:284:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association.rb:279:in `skip_statement_cache?'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_association.rb:302:in `find_target'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_association.rb:269:in `load_target'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_proxy.rb:41:in `load_target'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_proxy.rb:1028:in `records'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/delegation.rb:39:in `each'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:114:in `detect'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:114:in `translation_for'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:72:in `fetch_attribute'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:25:in `block in fetch'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:24:in `each'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:24:in `fetch'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter_dirty.rb:34:in `store_old_value'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter_dirty.rb:8:in `write'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:31:in `write_attribute'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/class_methods.rb:96:in `block in define_translated_attr_writer'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:46:in `public_send'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:46:in `_assign_attribute'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:40:in `block in _assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:39:in `each'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:39:in `_assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/attribute_assignment.rb:26:in `_assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:33:in `assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/attr_encrypted-3.0.3/lib/attr_encrypted/adapters/active_record.rb:28:in `perform_attribute_assignment'
/app/vendor/bundle/ruby/2.3.0/gems/attr_encrypted-3.0.3/lib/attr_encrypted/adapters/active_record.rb:36:in `assign_attributes'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:23:in `block in assign_attributes'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize.rb:27:in `with_locale'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:203:in `with_given_locale'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:23:in `assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/core.rb:337:in `initialize'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/inheritance.rb:66:in `new'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/inheritance.rb:66:in `new'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/persistence.rb:33:in `create'
/app/db/seeds.rb:48:in `<top (required)>'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:286:in `load'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:286:in `block in load'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:258:in `load_dependency'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:286:in `load'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/engine.rb:549:in `load_seed'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/tasks/database_tasks.rb:270:in `load_seed'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/railties/databases.rake:184:in `block (2 levels) in <top (required)>'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/commands/rake/rake_command.rb:21:in `block in perform'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/commands/rake/rake_command.rb:18:in `perform'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/command.rb:46:in `invoke'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/commands.rb:16:in `<top (required)>'
/app/bin/rails:4:in `require'
/app/bin/rails:4:in `<main>'
PG::UndefinedTable: ERROR: relation "information_blog_post_translations" does not exist
LINE 8: WHERE a.attrelid = '"information_blog_post_tr...
^
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:85:in `async_exec'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:85:in `block (2 levels) in query'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies/interlock.rb:46:in `block in permit_concurrent_loads'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/concurrency/share_lock.rb:185:in `yield_shares'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies/interlock.rb:45:in `permit_concurrent_loads'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:84:in `block in query'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:612:in `block (2 levels) in log'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:611:in `block in log'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:603:in `log'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql/database_statements.rb:83:in `query'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/postgresql_adapter.rb:775:in `column_definitions'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/abstract_adapter.rb:166:in `columns'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/schema_cache.rb:67:in `columns'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/connection_adapters/schema_cache.rb:73:in `columns_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/model_schema.rb:451:in `load_schema!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/attributes.rb:233:in `load_schema!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/attribute_decorators.rb:50:in `load_schema!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/model_schema.rb:446:in `load_schema'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/model_schema.rb:339:in `columns_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/table_metadata.rb:39:in `has_column?'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:91:in `block in create_binds_for_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:89:in `each'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:89:in `create_binds_for_hash'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/predicate_builder.rb:34:in `create_binds'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/where_clause_factory.rb:21:in `build'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/query_methods.rb:612:in `where!'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/query_methods.rb:605:in `where'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:69:in `last_chain_scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:126:in `add_constraints'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:28:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association_scope.rb:5:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association.rb:97:in `association_scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association.rb:86:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_association.rb:284:in `scope'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/association.rb:279:in `skip_statement_cache?'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_association.rb:302:in `find_target'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_association.rb:269:in `load_target'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_proxy.rb:41:in `load_target'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/associations/collection_proxy.rb:1028:in `records'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/relation/delegation.rb:39:in `each'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:114:in `detect'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:114:in `translation_for'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:72:in `fetch_attribute'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:25:in `block in fetch'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:24:in `each'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter.rb:24:in `fetch'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter_dirty.rb:34:in `store_old_value'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/adapter_dirty.rb:8:in `write'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:31:in `write_attribute'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/class_methods.rb:96:in `block in define_translated_attr_writer'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:46:in `public_send'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:46:in `_assign_attribute'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:40:in `block in _assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:39:in `each'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:39:in `_assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/attribute_assignment.rb:26:in `_assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activemodel-5.1.0.rc2/lib/active_model/attribute_assignment.rb:33:in `assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/attr_encrypted-3.0.3/lib/attr_encrypted/adapters/active_record.rb:28:in `perform_attribute_assignment'
/app/vendor/bundle/ruby/2.3.0/gems/attr_encrypted-3.0.3/lib/attr_encrypted/adapters/active_record.rb:36:in `assign_attributes'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:23:in `block in assign_attributes'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize.rb:27:in `with_locale'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:203:in `with_given_locale'
/app/vendor/bundle/ruby/2.3.0/bundler/gems/globalize-6f9d3f38d132/lib/globalize/active_record/instance_methods.rb:23:in `assign_attributes'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/core.rb:337:in `initialize'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/inheritance.rb:66:in `new'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/inheritance.rb:66:in `new'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/persistence.rb:33:in `create'
/app/db/seeds.rb:48:in `<top (required)>'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:286:in `load'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:286:in `block in load'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:258:in `load_dependency'
/app/vendor/bundle/ruby/2.3.0/gems/activesupport-5.1.0.rc2/lib/active_support/dependencies.rb:286:in `load'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/engine.rb:549:in `load_seed'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/tasks/database_tasks.rb:270:in `load_seed'
/app/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.0.rc2/lib/active_record/railties/databases.rake:184:in `block (2 levels) in <top (required)>'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/commands/rake/rake_command.rb:21:in `block in perform'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/commands/rake/rake_command.rb:18:in `perform'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/command.rb:46:in `invoke'
/app/vendor/bundle/ruby/2.3.0/gems/railties-5.1.0.rc2/lib/rails/commands.rb:16:in `<top (required)>'
/app/bin/rails:4:in `require'
/app/bin/rails:4:in `<main>'
Tasks: TOP => db:seed
(See full trace by running task with --trace)
为什么这只能在本地使用 MySQL?
最佳答案
根据源码source code Rails 完全忽略 up
/down
方法,如果有 change
一个
关于mysql - 全局化,Heroku:PG::UndefinedTable:错误:关系不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44486336/
下面的说法正确吗? “人最好的 friend 是狗。” public class Mann { private BestFriend dog; //etc } 最佳答案 我想说这样
我一直在 documentation 中查看 Laravel 4 中的关系我正在尝试解决以下问题。 我的数据库中有一个名为“事件”的表。该表具有各种字段,主要包含与其他表相关的 ID。例如,我有一个“
我的表具有如下关系: 我有相互链接的级联下拉框,即当您选择国家/地区时,该国家/地区下的区域将加载到区域下拉列表中。但现在我想将下拉菜单更改为基于 Ajax 的自动完成文本框。 我的问题是,我应该有多
我正在尝试弄清楚如何构建这个数据库。我之前用过Apple的核心数据就好了,现在我只是在做一个需要MySQL的不同项目。我是 MySQL 的新手,所以请放轻松。 :) 对于这个例子,假设我有三个表,Us
MongoDB 的关系表示多个文档之间在逻辑上的相互联系。 文档间可以通过嵌入和引用来建立联系。 MongoDB 中的关系可以是: 1:1 (1对1) 1: N (1对多)
您能解释一下 SQL 中“范围”和“分配单元”之间的区别或关系吗? 最佳答案 分配单元基本上只是一组页面。它可以很小(一页)或很大(很多页)。它在 sys.allocation_units 中有一个元
我有一个表 geoLocations,其中包含两列纬度和经度。还有第二个表(让我们将其命名为城市),其中包含每对唯一的纬度和经度对应的城市。 如何使用 PowerPivot 为这种关系建模?创建两个单
我想用 SQLDelight 建模关系,尤其是 一对多关系。 我有 2 张 table :recipe和 ingredient .为简单起见,它们看起来像这样: CREATE TABLE recipe
我是 Neo4J 新手,我有一个带有源和目标 IP 的简单 CSV。我想在具有相同标签的节点之间创建关系。 类似于... source_ip >> ALERTS >> dest_ip,或者相反。 "d
我正在创建一个类图,但我想知道下面显示的两个类之间是否会有任何关联 - 据我了解,对于关联,ClassA 必须有一个 ClassB 的实例,在这种情况下没有但是,它确实需要知道 ClassB 的一个变
是否可以显示其他属性,即“hasTopping”等? 如何在 OWLViz 中做到这一点? 最佳答案 OWLViz 仅 显示类层次结构(断言和推断的类层次结构)。仅使用“is-a”关系进行描述。 OW
public class MainClass { ArrayList mans = new ArrayList(); // I'm filling in this arraylist,
我想知道“多对二”的关系。 child 可以与两个 parent 中的任何一个联系,但不能同时与两个 parent 联系。有什么办法可以加强这一点吗?我也想防止 child 重复条目。 一个真实的例子
我有一个已经创建的Grails插件,旨在支持许多应用程序。该插件具有一个Employee域对象。问题在于,当在主应用程序中使用该应用程序中的域对象时,需要将其引用回Employee对象。因此,我的主应
我有一个类(class)表、类(class)hasMany部分和部分hasMany讲座以及讲座hasMany评论。如果我有评论 ID 并且想知道其类(class)名称,我应该如何在 LectureCo
我有一个模型团队,包含 ID 和名称。所有可能的团队都会被存储。 我的模型游戏有两列 team_1 和 team_2..我需要哪种关系? 我已经测试了很多,但它只适用于一列.. 最佳答案 也许你可以试
我读了很多关于 ICE 或 Corba 等技术中使用的仆人和对象的文章。有很多资源我可以读到这样的东西: 一个仆人可以处理多个对象(为了节省资源)。 一个对象可以由多个仆人处理(为了可靠性)。 有人可
嗨, 我有一个令人沮丧的问题,我在这方面有点生疏。我有两个这样的类(class): class A{ int i; String j ; //Getters and setters} class B
class Employee { private String name; void setName(String n) { name = n; } String getNam
如果您有这样的关系: 员工与其主管员工之间存在多对一关系 员工与其部门的多对一关系 部门与其经理一对一 我会在 Employee 实体中写入: @ManyToOne (cascade=CascadeT
我是一名优秀的程序员,十分优秀!