Files
RubyMotionContributors/schemas/0001_initial.rb
2015-07-14 16:29:48 +08:00

25 lines
420 B
Ruby

schema "0001 initial" do
# Examples:
#
# entity "Person" do
# string :name, optional: false
#
# has_many :posts
# end
#
# entity "Post" do
# string :title, optional: false
# string :body
#
# datetime :created_at
# datetime :updated_at
#
# has_many :replies, inverse: "Post.parent"
# belongs_to :parent, inverse: "Post.replies"
#
# belongs_to :person
# end
end