Displaying 1 result from an estimated 1 matches for "sys_nc00013".
2006 Dec 20
1
Problem with Oracle function-based indexes in Rails
...we define an index like the
following, we end up with problems during the "db:schema:dump" rake target.
add_index "emcolumn", ["upper(name)"], :name => "ind_emcolumn_uname"
The created schema.rb file contains:
add_index "emcolumn", ["sys_nc00013$"], :name => "ind_emcolumn_uname"
Well, we are aware we can use "config.active_record.schema_format = :sql" to
fall back to a SQL file containing only table definition statements.
However it would be nice if the Oracle adapter would understand such
constructs. A poss...