Displaying 1 result from an estimated 1 matches for "og_tutori".
Did you mean:
og_tutorial
2006 Jan 16
11
Plans to intigrate ObjectGraph in to Rails
Are there any plans to move the schema definition from migrations to the
model, where it should be?
Like og does, which I think is used by the ruby Nitro framework...
ObjectGraph:
http://www.rubygarden.org/index.cgi/Libraries/og_tutorial.rdoc
Example code:
[code]
class Post
property :title, String, :sql => ''VARCHAR2(32) NOT NULL''
property :body, String
property :author, String
property :create_time, Time
property :hits, Fixnum, :sql_index => true
has_many :comments, Comment
end
[...