mirror of
https://github.com/github/rails.git
synced 2026-01-09 14:48:01 -05:00
Simple examples for require profiling
This commit is contained in:
14
activerecord/examples/simple.rb
Normal file
14
activerecord/examples/simple.rb
Normal file
@@ -0,0 +1,14 @@
|
||||
$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|
|
||||
t.string :name
|
||||
end
|
||||
end
|
||||
|
||||
bob = Person.create!(:name => 'bob')
|
||||
puts Person.all.inspect
|
||||
bob.destroy
|
||||
puts Person.all.inspect
|
||||
Reference in New Issue
Block a user