aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/schema.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-27 13:02:39 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-27 13:02:39 -0700
commitc01810dbec7dc4112c0f8b9bd78709c6db9a3e2d (patch)
treec5c8461792c13ddb9626cc7466f6a8dc4cf77eb0 /activerecord/test/schema/schema.rb
parentf3bfcbb2a23bc44c9a11df2f3e3d4ec146d69c48 (diff)
parent708b5c0d3a5cf7ca15107ed02d0eb408401e3a63 (diff)
downloadrails-c01810dbec7dc4112c0f8b9bd78709c6db9a3e2d.tar.gz
rails-c01810dbec7dc4112c0f8b9bd78709c6db9a3e2d.tar.bz2
rails-c01810dbec7dc4112c0f8b9bd78709c6db9a3e2d.zip
Merge pull request #7182 from yahonda/address_7178
Modity the :json_data_empty attribute from `:null => false` to `:null => true`
Diffstat (limited to 'activerecord/test/schema/schema.rb')
-rw-r--r--activerecord/test/schema/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index f48bab721f..6c919a2b02 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -42,7 +42,7 @@ ActiveRecord::Schema.define do
# big varchar below.
t.string :preferences, :null => true, :default => '', :limit => 1024
t.string :json_data, :null => true, :limit => 1024
- t.string :json_data_empty, :null => false, :default => "", :limit => 1024
+ t.string :json_data_empty, :null => true, :default => "", :limit => 1024
t.references :account
end