aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-06-23 07:38:51 -0400
committerJosé Valim <jose.valim@gmail.com>2010-06-23 17:46:37 +0200
commita3ce6fcc567836c99bb93cbe880b2c333a511593 (patch)
tree105dfcdeed3515de0f85ba5697f440154cdc4ec4 /activerecord/test/schema
parent32b8be95331928990a61a43023a343a0583b53c7 (diff)
downloadrails-a3ce6fcc567836c99bb93cbe880b2c333a511593.tar.gz
rails-a3ce6fcc567836c99bb93cbe880b2c333a511593.tar.bz2
rails-a3ce6fcc567836c99bb93cbe880b2c333a511593.zip
adding column named 'group' to ensure that nothing breaks given that 'group' is sql reserved word
[#4945 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index f5fba2f87d..b212e7cff2 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -485,6 +485,7 @@ ActiveRecord::Schema.define do
t.integer :parent_id
t.string :parent_title
t.string :type
+ t.string :group
end
create_table :taggings, :force => true do |t|