aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/examples/simple.rb
blob: 280b786d731dd3c2254a940c77aeed9fc9c90205 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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