From e8357935acde972fe42a1a3e0d8c969e518956ed Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Tue, 24 Jul 2012 22:46:17 +0900 Subject: This pull requests addresses ORA-01400 errors and also supports #6115 issue tested. Issue #6115 has been fixed and tested with the attribute `:null => false, :default => ""` However `:null => false` attribute is not necessary to test this issue, which causes many ORA-01400 errors with Oracle enhanced adapter. --- activerecord/test/schema/schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activerecord/test') diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index 1ad4d971f4..ab62fb82b6 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -176,7 +176,7 @@ ActiveRecord::Schema.define do t.integer :client_of t.integer :rating, :default => 1 t.integer :account_id - t.string :description, :null => false, :default => "" + t.string :description, :default => "" end add_index :companies, [:firm_id, :type, :rating, :ruby_type], :name => "company_index" -- cgit v1.2.3