Displaying 7 results from an estimated 7 matches for "add_column_opt".
Did you mean:
add_column_o
2008 Jun 24
9
ActiveRecord 2.1 Migration support
Hi all,
I am in the process of adding Migration support to the Ingres
ActiveRecord adapter and have run in to a problem. During the call to
create_table the Ingres adapter some how causes ruby to blow the stack
and coredump/segv. I have tracked down the problem down to
"add_column_options!" in
"lib/active_record/connection_adapters/abstract/schema_statements.rb".
Specifically the following line never gets executed:
sql << " DEFAULT #{quote(options[:default], options[:column])}" if
options_include_default?(options)
As a result the code keeps lo...
2008 Jun 24
9
ActiveRecord 2.1 Migration support
Hi all,
I am in the process of adding Migration support to the Ingres
ActiveRecord adapter and have run in to a problem. During the call to
create_table the Ingres adapter some how causes ruby to blow the stack
and coredump/segv. I have tracked down the problem down to
"add_column_options!" in
"lib/active_record/connection_adapters/abstract/schema_statements.rb".
Specifically the following line never gets executed:
sql << " DEFAULT #{quote(options[:default], options[:column])}" if
options_include_default?(options)
As a result the code keeps lo...
2006 Mar 04
1
active migration gives undefined_method ''string_to_binary''
...nnectionAdapters::ColumnDefinition:Class
c:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/connection_adapters/mysql_adapt
er.rb:119:in
`quote''
c:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/connection_adapters/abstract/sc
hema_statements.rb:245:in
`add_column_options!''
c:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/connection_adapters/abstract/sc
hema_definitions.rb:180:in
`add_column_options!''
c:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/connection_adapters/abstract/sc
hema_definitions.rb:169:...
2006 Apr 25
0
Migrate default now()
...fault =>
''current_timestamp''
It is converted to:
created_at timestamp NOT NULL DEFAULT ''current_timestamp''
It''s wrong.
I try to fixed it:
default_fix.rb:
module ActiveRecord
module ConnectionAdapters # :nodoc:
module SchemaStatements
def add_column_options!(sql, options) #:nodoc:
unless options[:default].nil?
if options[:default] == "now"
sql << " DEFAULT #{now(options[:default], options[:column])}"
else
sql << " DEFAULT #{quote(options[:default],
options[:co...
2006 Jan 09
3
rails ignoring the migration file
I have a mysql database that I am trying to use migrations on. The
problem that I am having is that when I create a blob field in my
migration file like so:
t.column "data", :binary, :limit => 15.megabytes, :null => false
rails changes it to this in the schema:
t.column "data", :binary, :default => "", :null => false
not only is this not what I wanted
2006 Jan 01
11
Migration db_schema_import always fails.
I have not been able to get DB migrations to work at all in Rails 1.0
for me. On multiple platforms I continually get the same errors. It
took me awhile to figure out some initial things, such as Migrations
don''t seem to support Enum column types, and doesn''t really support
Foreign key relationships (the constraints at least). After changing
my DB schema to jive more with the
2010 Dec 14
4
Change primary_key column name
Hi,
after changing a primary key column name, the auto-increment information
(MySQL) and sequence (Oracle) are lost. What is the correct way to rename
primary keys?
Thanks,
Gustavo
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to