fortune.rb 107 B

1234567
  1. class Fortune < ApplicationRecord
  2. self.table_name = "Fortune"
  3. def as_json(*)
  4. attributes
  5. end
  6. end