mirror of
https://github.com/zhigang1992/RubyMotionContributors.git
synced 2026-01-12 22:41:23 +08:00
25 lines
420 B
Ruby
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
|