I'm following this great cast:
http://railscasts.com/episodes/258-token-fields-revised
My database is Postgres.
This schema:
author.rb
class Author < ActiveRecord::Base
attr_accessible :name
has_many :authorships
has_many :books, through: :authorships
def self.tokens(query)
authors = where("name like ?", "%#{query}%")
if authors.empty?
[{id: "<<<#{query}>>>", name: "New: \"#{query}\""}]
else
authors
end
end
def self.ids_from_tokens(tokens)
tokens.gsub!(/<<<(.+?)>>>/) { create!(name: $1).id }
tokens.split(',')
end
end
authorship.rb
class Authorship < ActiveRecord::Base
belongs_to :book
belongs_to :author
end
book.rb
class Book < ActiveRecord::Base
attr_accessible :name, :author_tokens
has_many :authorships
has_many :authors, through: :authorships
attr_reader :author_tokens
def author_tokens=(tokens)
self.author_ids = Author.ids_from_tokens(tokens)
end
end
But I don't want to create the "authorship" table because of many rows! I want simply add in the book's table a column (string) with the author's ids, like this:
Books table:
id | name | author_ids
-------------------------------------------
1 | Book A | 15,12,16,19,2
2 | Book B | 1,2,5,44,159,3
Is this possible?