rails/activerecord/examples/simple.rb
Xavier Noria e6ab70c439 applies new string literal convention to the rest of the project
The current code base is not uniform. After some discussion,
we have chosen to go with double quotes by default.
2016-08-06 19:28:46 +02:00

14 lines
305 B
Ruby

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