mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
8 lines
145 B
Ruby
8 lines
145 B
Ruby
class Joke < ActiveRecord::Base
|
|
self.table_name = 'funny_jokes'
|
|
end
|
|
|
|
class GoodJoke < ActiveRecord::Base
|
|
self.table_name = 'funny_jokes'
|
|
end
|