aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/examples/simple.rb
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-06-23 22:50:55 -0700
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-06-23 22:50:55 -0700
commitc0714a969d85ca8ffb2371c34e770ea1b61eb2ec (patch)
treeb01e0af257ce97127c1817bcc71a5ba10758225d /activerecord/examples/simple.rb
parent11ac1e8a2ce9b12fce829088e1000328687d0cf4 (diff)
parentcbd4a2e3178f16a7c363035a111093692bece379 (diff)
downloadrails-c0714a969d85ca8ffb2371c34e770ea1b61eb2ec.tar.gz
rails-c0714a969d85ca8ffb2371c34e770ea1b61eb2ec.tar.bz2
rails-c0714a969d85ca8ffb2371c34e770ea1b61eb2ec.zip
Merge pull request #11067 from rajars2576/fix_older_rocket
replace all older rocket sign to new ":" from examples of active record ...
Diffstat (limited to 'activerecord/examples/simple.rb')
-rw-r--r--activerecord/examples/simple.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/examples/simple.rb b/activerecord/examples/simple.rb
index c12f746992..ee3c42a05b 100644
--- a/activerecord/examples/simple.rb
+++ b/activerecord/examples/simple.rb
@@ -2,13 +2,13 @@ $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
require 'active_record'
class Person < ActiveRecord::Base
- establish_connection :adapter => 'sqlite3', :database => 'foobar.db'
- connection.create_table table_name, :force => true do |t|
+ establish_connection adapter: 'sqlite3', database: 'foobar.db'
+ connection.create_table table_name, force: true do |t|
t.string :name
end
end
-bob = Person.create!(:name => 'bob')
+bob = Person.create!(name: 'bob')
puts Person.all.inspect
bob.destroy
puts Person.all.inspect