├── 404.html ├── CNAME ├── README.md ├── _config.yml ├── _includes ├── designer │ ├── designer.html │ ├── doctrine1.html │ ├── doctrine2.html │ ├── general.html │ └── propel.html ├── doctrine │ ├── behaviors.html │ ├── behaviors │ │ └── behaviors │ │ │ ├── GoogleI18n.md │ │ │ ├── blameable.md │ │ │ ├── geographical.md │ │ │ ├── link │ │ │ ├── GoogleI18n.md │ │ │ ├── blameable.md │ │ │ ├── geographical.md │ │ │ ├── loggable.md │ │ │ ├── searchable.md │ │ │ ├── sluggable.md │ │ │ ├── softdeleteable.md │ │ │ ├── sortable.md │ │ │ ├── taggable.md │ │ │ ├── timestampable.md │ │ │ ├── translatable.md │ │ │ └── tree.md │ │ │ ├── loggable.md │ │ │ ├── more │ │ │ ├── GoogleI18n.md │ │ │ ├── blameable.md │ │ │ ├── geographical.md │ │ │ ├── loggable.md │ │ │ ├── searchable.md │ │ │ ├── sluggable.md │ │ │ ├── softdeleteable.md │ │ │ ├── sortable.md │ │ │ ├── taggable.md │ │ │ ├── timestampable.md │ │ │ ├── translatable.md │ │ │ └── tree.md │ │ │ ├── searchable.md │ │ │ ├── sluggable.md │ │ │ ├── softdeleteable.md │ │ │ ├── sortable.md │ │ │ ├── taggable.md │ │ │ ├── timestampable.md │ │ │ ├── translatable.md │ │ │ ├── tree.md │ │ │ └── yml │ │ │ ├── GoogleI18n.md │ │ │ ├── blameable.md │ │ │ ├── geographical.md │ │ │ ├── loggable.md │ │ │ ├── searchable.md │ │ │ ├── sluggable.md │ │ │ ├── softdeleteable.md │ │ │ ├── sortable.md │ │ │ ├── taggable.md │ │ │ ├── timestampable.md │ │ │ ├── translatable.md │ │ │ └── tree.md │ ├── elements │ │ ├── association.html │ │ ├── association │ │ │ ├── link │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ ├── manytooneinverse_as.md │ │ │ ├── manytooneinverse_options.md │ │ │ ├── manytooneowner_as.md │ │ │ ├── manytooneowner_options.md │ │ │ ├── more │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ ├── onetooneinverse_as.md │ │ │ ├── onetooneowner_as.md │ │ │ └── yml │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ ├── entity.html │ │ ├── entity │ │ │ ├── alloptions.md │ │ │ ├── link │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ ├── more │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ ├── simpleentity.md │ │ │ └── yml │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ ├── field.html │ │ ├── field │ │ │ ├── link │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ ├── regularfieldoptions.md │ │ │ │ └── validators.md │ │ │ ├── more │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ ├── regularfieldoptions.md │ │ │ │ └── validators.md │ │ │ ├── primarykey.md │ │ │ ├── primarykeyoptions.md │ │ │ ├── regularfield.md │ │ │ ├── regularfieldoptions.md │ │ │ ├── validators.md │ │ │ └── yml │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ ├── regularfieldoptions.md │ │ │ │ └── validators.md │ │ ├── id.html │ │ ├── index │ │ │ ├── index.md │ │ │ ├── link │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ ├── more │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ ├── uniqueindex.md │ │ │ └── yml │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ ├── indexes.html │ │ ├── inheritance.html │ │ ├── inheritance │ │ │ ├── aggregation.md │ │ │ ├── aggregationchild.md │ │ │ ├── concretechild.md │ │ │ ├── concreteparent.md │ │ │ ├── link │ │ │ │ ├── aggregation.md │ │ │ │ ├── aggregationchild.md │ │ │ │ ├── concretechild.md │ │ │ │ ├── concreteparent.md │ │ │ │ ├── simplechild.md │ │ │ │ └── simpleparent.md │ │ │ ├── more │ │ │ │ ├── aggregation.md │ │ │ │ ├── aggregationchild.md │ │ │ │ ├── concretechild.md │ │ │ │ ├── concreteparent.md │ │ │ │ ├── simplechild.md │ │ │ │ └── simpleparent.md │ │ │ ├── simplechild.md │ │ │ ├── simpleparent.md │ │ │ └── yml │ │ │ │ ├── aggregation.md │ │ │ │ ├── aggregationchild.md │ │ │ │ ├── concretechild.md │ │ │ │ ├── concreteparent.md │ │ │ │ ├── simplechild.md │ │ │ │ └── simpleparent.md │ │ ├── mnassoc │ │ │ ├── link │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ ├── manytomanyowner_as.md │ │ │ │ ├── mnentity.md │ │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ │ └── nonpkmnentity.md │ │ │ ├── manytomanyinverse_as.md │ │ │ ├── manytomanyoptions.md │ │ │ ├── manytomanyowner_as.md │ │ │ ├── mnentity.md │ │ │ ├── more │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ ├── manytomanyowner_as.md │ │ │ │ ├── mnentity.md │ │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ │ └── nonpkmnentity.md │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ ├── nonpkmnentity.md │ │ │ └── yml │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ ├── manytomanyowner_as.md │ │ │ │ ├── mnentity.md │ │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ │ └── nonpkmnentity.md │ │ ├── mnassociation.html │ │ └── schemafile │ │ │ ├── link │ │ │ └── schemafile.md │ │ │ ├── more │ │ │ └── schemafile.md │ │ │ ├── schemafile.md │ │ │ └── yml │ │ │ └── schemafile.md │ ├── getting-started.html │ ├── getting-started │ │ ├── basic-use │ │ │ ├── db_model.md │ │ │ └── model_db.md │ │ ├── installation │ │ │ ├── implementation.md │ │ │ ├── install-pear.md │ │ │ ├── install-svn.md │ │ │ ├── link │ │ │ │ └── entitymanager.md │ │ │ ├── more │ │ │ │ └── entitymanager.md │ │ │ ├── php │ │ │ │ └── entitymanager.md │ │ │ ├── xml │ │ │ │ └── entitymanager.md │ │ │ └── yml │ │ │ │ └── entitymanager.md │ │ └── symfony │ │ │ ├── symfonybasics.md │ │ │ └── symfonyinstall.md │ ├── link-section.html │ ├── links │ │ ├── blogs.md │ │ ├── helpful-links.md │ │ └── official-sites.md │ └── model-elements.html ├── doctrine2 │ ├── behaviors.html │ ├── behaviors │ │ ├── behaviors │ │ │ ├── blameable.md │ │ │ ├── iptraceable.md │ │ │ ├── link │ │ │ │ ├── blameable.md │ │ │ │ ├── iptraceable.md │ │ │ │ ├── loggable.md │ │ │ │ ├── referenceintegrity.md │ │ │ │ ├── sluggable.md │ │ │ │ ├── softdeleteable.md │ │ │ │ ├── sortable.md │ │ │ │ ├── timestampable.md │ │ │ │ ├── translatable.md │ │ │ │ ├── tree.md │ │ │ │ └── uploadable.md │ │ │ ├── loggable.md │ │ │ ├── more │ │ │ │ ├── blameable.md │ │ │ │ ├── iptraceable.md │ │ │ │ ├── loggable.md │ │ │ │ ├── referenceintegrity.md │ │ │ │ ├── sluggable.md │ │ │ │ ├── softdeleteable.md │ │ │ │ ├── sortable.md │ │ │ │ ├── timestampable.md │ │ │ │ ├── translatable.md │ │ │ │ ├── tree.md │ │ │ │ └── uploadable.md │ │ │ ├── php │ │ │ │ ├── blameable.md │ │ │ │ ├── iptraceable.md │ │ │ │ ├── loggable.md │ │ │ │ ├── referenceintegrity.md │ │ │ │ ├── sluggable.md │ │ │ │ ├── softdeleteable.md │ │ │ │ ├── sortable.md │ │ │ │ ├── timestampable.md │ │ │ │ ├── translatable.md │ │ │ │ ├── tree.md │ │ │ │ └── uploadable.md │ │ │ ├── referenceintegrity.md │ │ │ ├── sluggable.md │ │ │ ├── softdeleteable.md │ │ │ ├── sortable.md │ │ │ ├── timestampable.md │ │ │ ├── translatable.md │ │ │ ├── tree.md │ │ │ ├── uploadable.md │ │ │ ├── xml │ │ │ │ ├── blameable.md │ │ │ │ ├── iptraceable.md │ │ │ │ ├── loggable.md │ │ │ │ ├── referenceintegrity.md │ │ │ │ ├── sluggable.md │ │ │ │ ├── softdeleteable.md │ │ │ │ ├── sortable.md │ │ │ │ ├── timestampable.md │ │ │ │ ├── translatable.md │ │ │ │ ├── tree.md │ │ │ │ └── uploadable.md │ │ │ └── yml │ │ │ │ ├── blameable.md │ │ │ │ ├── iptraceable.md │ │ │ │ ├── loggable.md │ │ │ │ ├── referenceintegrity.md │ │ │ │ ├── sluggable.md │ │ │ │ ├── softdeleteable.md │ │ │ │ ├── sortable.md │ │ │ │ ├── timestampable.md │ │ │ │ ├── translatable.md │ │ │ │ ├── tree.md │ │ │ │ └── uploadable.md │ │ └── installation │ │ │ ├── configzend2.md │ │ │ ├── installsymfony2.md │ │ │ ├── installzend2.md │ │ │ ├── listenerssymfony2.md │ │ │ └── mappingsymfony2.md │ ├── elements │ │ ├── association.html │ │ ├── association │ │ │ ├── link │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ ├── manytooneinverse_as.md │ │ │ ├── manytooneinverse_options.md │ │ │ ├── manytooneowner_as.md │ │ │ ├── manytooneowner_options.md │ │ │ ├── more │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ ├── onetooneinverse_as.md │ │ │ ├── onetooneowner_as.md │ │ │ ├── php │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ ├── xml │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ └── yml │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ ├── entity.html │ │ ├── entity │ │ │ ├── alloptions.md │ │ │ ├── link │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ ├── more │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ ├── php │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ ├── simpleentity.md │ │ │ ├── xml │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ └── yml │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ ├── field.html │ │ ├── field │ │ │ ├── link │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ └── regularfieldoptions.md │ │ │ ├── more │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ └── regularfieldoptions.md │ │ │ ├── php │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ └── regularfieldoptions.md │ │ │ ├── primarykey.md │ │ │ ├── primarykeyoptions.md │ │ │ ├── regularfield.md │ │ │ ├── regularfieldoptions.md │ │ │ ├── xml │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ └── regularfieldoptions.md │ │ │ └── yml │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ └── regularfieldoptions.md │ │ ├── id.html │ │ ├── index │ │ │ ├── index.md │ │ │ ├── link │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ ├── more │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ ├── php │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ ├── uniqueindex.md │ │ │ ├── xml │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ └── yml │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ ├── indexes.html │ │ ├── inheritance.html │ │ ├── inheritance │ │ │ ├── classtablechild.md │ │ │ ├── classtableparent.md │ │ │ ├── link │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── simplechild.md │ │ │ │ ├── simpleparent.md │ │ │ │ ├── supperclass.md │ │ │ │ └── supperclasschild.md │ │ │ ├── more │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── simplechild.md │ │ │ │ ├── simpleparent.md │ │ │ │ ├── supperclass.md │ │ │ │ └── supperclasschild.md │ │ │ ├── php │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── simplechild.md │ │ │ │ ├── simpleparent.md │ │ │ │ ├── supperclass.md │ │ │ │ └── supperclasschild.md │ │ │ ├── simplechild.md │ │ │ ├── simpleparent.md │ │ │ ├── supperclass.md │ │ │ ├── supperclasschild.md │ │ │ ├── xml │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── simplechild.md │ │ │ │ ├── simpleparent.md │ │ │ │ ├── supperclass.md │ │ │ │ └── supperclasschild.md │ │ │ └── yml │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── simplechild.md │ │ │ │ ├── simpleparent.md │ │ │ │ ├── supperclass.md │ │ │ │ └── supperclasschild.md │ │ ├── mnassoc │ │ │ ├── link │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ └── manytomanyowner_as.md │ │ │ ├── manytomanyinverse_as.md │ │ │ ├── manytomanyoptions.md │ │ │ ├── manytomanyowner_as.md │ │ │ ├── mnentity.md │ │ │ ├── more │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ └── manytomanyowner_as.md │ │ │ ├── php │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ └── manytomanyowner_as.md │ │ │ ├── xml │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ └── manytomanyowner_as.md │ │ │ └── yml │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ └── manytomanyowner_as.md │ │ ├── mnassociation.html │ │ └── schemafile │ │ │ ├── link │ │ │ └── schemafile.md │ │ │ ├── more │ │ │ └── schemafile.md │ │ │ ├── php │ │ │ └── schemafile.md │ │ │ ├── schemafile.md │ │ │ ├── xml │ │ │ └── schemafile.md │ │ │ └── yml │ │ │ └── schemafile.md │ ├── getting-started.html │ ├── getting-started │ │ ├── basic-use │ │ │ ├── db_model.md │ │ │ └── model_db.md │ │ ├── installation │ │ │ ├── commandline.html │ │ │ ├── commandline.md │ │ │ ├── commandline23.md │ │ │ ├── commandline24.md │ │ │ ├── config.md │ │ │ ├── entitymanager.md │ │ │ ├── install.md │ │ │ ├── link │ │ │ │ └── entitymanager.md │ │ │ ├── more │ │ │ │ └── entitymanager.md │ │ │ ├── php │ │ │ │ └── entitymanager.md │ │ │ ├── xml │ │ │ │ └── entitymanager.md │ │ │ └── yml │ │ │ │ └── entitymanager.md │ │ ├── symfony │ │ │ ├── symfony2basics.md │ │ │ ├── symfony2config.md │ │ │ ├── symfony2install.md │ │ │ ├── symfonybasics.md │ │ │ ├── symfonyconfig.md │ │ │ └── symfonyinstall.md │ │ └── zend │ │ │ └── zendinstall.md │ ├── link-section.html │ ├── links │ │ ├── blogs.md │ │ ├── helpful-links.md │ │ └── official-sites.md │ └── model-elements.html ├── elem_docu.html ├── footer.html ├── getcode.html ├── header.html ├── images │ ├── big_model.png.alttext.html │ ├── elements │ │ ├── alloptions.png.alttext.html │ │ ├── field.png.alttext.html │ │ ├── fieldalloptions.png.alttext.html │ │ ├── foreignkey.png.alttext.html │ │ ├── indexes.png.alttext.html │ │ ├── inh_child.png.alttext.html │ │ ├── inh_par.png.alttext.html │ │ ├── inheritance.png.alttext.html │ │ ├── manytomany.png.alttext.html │ │ ├── manytomanyinverse.png.alttext.html │ │ ├── manytomanyowner.png.alttext.html │ │ ├── manytoone.png.alttext.html │ │ ├── manytooneinverse.png.alttext.html │ │ ├── manytooneowner.png.alttext.html │ │ ├── model.png.alttext.html │ │ ├── nonpkmanytomany.png.alttext.html │ │ ├── nonpkmanytomanyinverse.png.alttext.html │ │ ├── nonpkmanytomanyowner.png.alttext.html │ │ ├── nonpkmanytooneinverse.png.alttext.html │ │ ├── nonpkmanytooneowner.png.alttext.html │ │ ├── onetoone.png.alttext.html │ │ ├── onetooneinverse.png.alttext.html │ │ ├── onetooneowner.png.alttext.html │ │ ├── placeholder.png.alttext.html │ │ ├── primarykey.png.alttext.html │ │ └── simpleentity.png.alttext.html │ ├── model.png.alttext.html │ └── skipper │ │ ├── big_model.png.alttext.html │ │ ├── button.png.alttext.html │ │ ├── entityeditor.png.alttext.html │ │ ├── export.png.alttext.html │ │ ├── import.png.alttext.html │ │ └── skipper.png.alttext.html ├── navigation.html ├── navigation_about.html ├── navigation_doctrine1.html ├── navigation_doctrine2.html ├── navigation_general.html ├── navigation_propel.html ├── propel │ ├── behaviors.html │ ├── behaviors │ │ └── behaviors │ │ │ ├── aggregate.md │ │ │ ├── alternativecoding.md │ │ │ ├── archivable.md │ │ │ ├── autoaddpk.md │ │ │ ├── custombehavior.md │ │ │ ├── i18n.md │ │ │ ├── link │ │ │ ├── aggregate.md │ │ │ ├── alternativecoding.md │ │ │ ├── archivable.md │ │ │ ├── autoaddpk.md │ │ │ ├── custombehavior.md │ │ │ ├── i18n.md │ │ │ ├── nested_set.md │ │ │ ├── query_cache.md │ │ │ ├── sluggable.md │ │ │ ├── softdelete.md │ │ │ ├── sortable.md │ │ │ ├── timestampable.md │ │ │ └── versionable.md │ │ │ ├── more │ │ │ ├── aggregate.md │ │ │ ├── alternativecoding.md │ │ │ ├── archivable.md │ │ │ ├── autoaddpk.md │ │ │ ├── custombehavior.md │ │ │ ├── i18n.md │ │ │ ├── nested_set.md │ │ │ ├── query_cache.md │ │ │ ├── sluggable.md │ │ │ ├── softdelete.md │ │ │ ├── sortable.md │ │ │ ├── timestampable.md │ │ │ └── versionable.md │ │ │ ├── nested_set.md │ │ │ ├── query_cache.md │ │ │ ├── sluggable.md │ │ │ ├── softdelete.md │ │ │ ├── sortable.md │ │ │ ├── timestampable.md │ │ │ ├── versionable.md │ │ │ ├── xml │ │ │ ├── aggregate.md │ │ │ ├── alternativecoding.md │ │ │ ├── archivable.md │ │ │ ├── autoaddpk.md │ │ │ ├── custombehavior.md │ │ │ ├── i18n.md │ │ │ ├── nested_set.md │ │ │ ├── query_cache.md │ │ │ ├── sluggable.md │ │ │ ├── softdelete.md │ │ │ ├── sortable.md │ │ │ ├── timestampable.md │ │ │ └── versionable.md │ │ │ └── yml │ │ │ ├── aggregate.md │ │ │ ├── alternativecoding.md │ │ │ ├── archivable.md │ │ │ ├── autoaddpk.md │ │ │ ├── custombehavior.md │ │ │ ├── i18n.md │ │ │ ├── nested_set.md │ │ │ ├── query_cache.md │ │ │ ├── sluggable.md │ │ │ ├── softdelete.md │ │ │ ├── sortable.md │ │ │ ├── timestampable.md │ │ │ └── versionable.md │ ├── elements │ │ ├── association.html │ │ ├── association │ │ │ ├── link │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ ├── manytooneinverse_as.md │ │ │ ├── manytooneinverse_options.md │ │ │ ├── manytooneowner_as.md │ │ │ ├── manytooneowner_options.md │ │ │ ├── more │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ ├── onetooneinverse_as.md │ │ │ ├── onetooneowner_as.md │ │ │ ├── xml │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ │ └── yml │ │ │ │ ├── manytooneinverse_as.md │ │ │ │ ├── manytooneinverse_options.md │ │ │ │ ├── manytooneowner_as.md │ │ │ │ ├── manytooneowner_options.md │ │ │ │ ├── nonpkmanytooneinverse_as.md │ │ │ │ ├── nonpkmanytooneowner_as.md │ │ │ │ ├── onetooneinverse_as.md │ │ │ │ └── onetooneowner_as.md │ │ ├── entity.html │ │ ├── entity │ │ │ ├── alloptions.md │ │ │ ├── link │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ ├── more │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ ├── simpleentity.md │ │ │ ├── xml │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ │ └── yml │ │ │ │ ├── alloptions.md │ │ │ │ └── simpleentity.md │ │ ├── field.html │ │ ├── field │ │ │ ├── link │ │ │ │ ├── foreignkey.md │ │ │ │ ├── foreignkeyoptions.md │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ ├── regularfieldoptions.md │ │ │ │ └── validators.md │ │ │ ├── more │ │ │ │ ├── foreignkey.md │ │ │ │ ├── foreignkeyoptions.md │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ ├── regularfieldoptions.md │ │ │ │ └── validators.md │ │ │ ├── primarykey.md │ │ │ ├── primarykeyoptions.md │ │ │ ├── regularfield.md │ │ │ ├── regularfieldoptions.md │ │ │ ├── validators.md │ │ │ ├── xml │ │ │ │ ├── foreignkey.md │ │ │ │ ├── foreignkeyoptions.md │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ ├── regularfieldoptions.md │ │ │ │ └── validators.md │ │ │ └── yml │ │ │ │ ├── foreignkey.md │ │ │ │ ├── foreignkeyoptions.md │ │ │ │ ├── primarykey.md │ │ │ │ ├── primarykeyoptions.md │ │ │ │ ├── regularfield.md │ │ │ │ ├── regularfieldoptions.md │ │ │ │ └── validators.md │ │ ├── id.html │ │ ├── index │ │ │ ├── index.md │ │ │ ├── link │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ ├── more │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ ├── uniqueindex.md │ │ │ ├── xml │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ │ └── yml │ │ │ │ ├── index.md │ │ │ │ └── uniqueindex.md │ │ ├── indexes.html │ │ ├── inheritance.html │ │ ├── inheritance │ │ │ ├── classtablechild.md │ │ │ ├── classtableparent.md │ │ │ ├── concretechild.md │ │ │ ├── concreteparent.md │ │ │ ├── link │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── concretechild.md │ │ │ │ ├── concreteparent.md │ │ │ │ ├── simplechild.md │ │ │ │ ├── simpleparent.md │ │ │ │ ├── supperclass.md │ │ │ │ └── supperclasschild.md │ │ │ ├── more │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── concretechild.md │ │ │ │ ├── concreteparent.md │ │ │ │ ├── simplechild.md │ │ │ │ ├── simpleparent.md │ │ │ │ ├── supperclass.md │ │ │ │ └── supperclasschild.md │ │ │ ├── simplechild.md │ │ │ ├── simpleparent.md │ │ │ ├── supperclass.md │ │ │ ├── supperclasschild.md │ │ │ ├── xml │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── concretechild.md │ │ │ │ ├── concreteparent.md │ │ │ │ └── simpleparent.md │ │ │ └── yml │ │ │ │ ├── classtablechild.md │ │ │ │ ├── classtableparent.md │ │ │ │ ├── concretechild.md │ │ │ │ ├── concreteparent.md │ │ │ │ └── simpleparent.md │ │ ├── mnassoc │ │ │ ├── link │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ ├── manytomanyowner_as.md │ │ │ │ ├── mnentity.md │ │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ │ └── nonpkmnentity.md │ │ │ ├── manytomanyinverse_as.md │ │ │ ├── manytomanyoptions.md │ │ │ ├── manytomanyowner_as.md │ │ │ ├── mnentity.md │ │ │ ├── more │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ ├── manytomanyowner_as.md │ │ │ │ ├── mnentity.md │ │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ │ └── nonpkmnentity.md │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ ├── nonpkmnentity.md │ │ │ ├── xml │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ ├── manytomanyowner_as.md │ │ │ │ ├── mnentity.md │ │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ │ └── nonpkmnentity.md │ │ │ └── yml │ │ │ │ ├── manytomanyinverse_as.md │ │ │ │ ├── manytomanyoptions.md │ │ │ │ ├── manytomanyowner_as.md │ │ │ │ ├── mnentity.md │ │ │ │ ├── nonpkmanytomanyinverse_as.md │ │ │ │ ├── nonpkmanytomanyowner_as.md │ │ │ │ └── nonpkmnentity.md │ │ ├── mnassociation.html │ │ ├── module │ │ │ ├── link │ │ │ │ └── module.md │ │ │ ├── module.md │ │ │ ├── more │ │ │ │ └── module.md │ │ │ ├── xml │ │ │ │ └── module.md │ │ │ └── yml │ │ │ │ └── module.md │ │ └── schemafile │ │ │ ├── link │ │ │ └── schemafile.md │ │ │ ├── more │ │ │ └── schemafile.md │ │ │ ├── schemafile.md │ │ │ ├── xml │ │ │ └── schemafile.md │ │ │ └── yml │ │ │ └── schemafile.md │ ├── getting-started.html │ ├── getting-started │ │ ├── db_model.md │ │ ├── install.md │ │ ├── model_db.md │ │ ├── symfony2basics.md │ │ ├── symfony2config.md │ │ └── symfony2install.md │ ├── link-section.html │ ├── links │ │ ├── blogs.md │ │ ├── helpful-links.md │ │ └── official-sites.md │ └── model-elements.html └── section.html ├── _layouts └── default.html ├── about └── index.html ├── cakephp └── index.html ├── css ├── foundation.css ├── foundation.min.css ├── frekie.css ├── normalize.css └── style.css ├── doctrine └── index.html ├── examples └── index.html ├── images ├── big_model.png ├── elements │ ├── alloptions.png │ ├── field.png │ ├── fieldalloptions.png │ ├── foreignkey.png │ ├── indexes.png │ ├── inh_child.png │ ├── inh_par.png │ ├── inheritance.png │ ├── manytomany.png │ ├── manytomanyinverse.png │ ├── manytomanyowner.png │ ├── manytoone.png │ ├── manytooneinverse.png │ ├── manytooneowner.png │ ├── model.png │ ├── nonpkmanytomany.png │ ├── nonpkmanytomanyinverse.png │ ├── nonpkmanytomanyowner.png │ ├── nonpkmanytooneinverse.png │ ├── nonpkmanytooneowner.png │ ├── onetoone.png │ ├── onetooneinverse.png │ ├── onetooneowner.png │ ├── placeholder.png │ ├── primarykey.png │ └── simpleentity.png ├── model.png └── skipper │ ├── big_model.png │ ├── button.png │ ├── entityeditor.png │ ├── export.png │ ├── import.png │ └── skipper.png ├── img └── .gitkeep ├── index.html ├── js ├── foundation.min.js ├── foundation │ ├── foundation.abide.js │ ├── foundation.accordion.js │ ├── foundation.alert.js │ ├── foundation.clearing.js │ ├── foundation.dropdown.js │ ├── foundation.equalizer.js │ ├── foundation.interchange.js │ ├── foundation.joyride.js │ ├── foundation.js │ ├── foundation.magellan.js │ ├── foundation.offcanvas.js │ ├── foundation.orbit.js │ ├── foundation.reveal.js │ ├── foundation.tab.js │ ├── foundation.tooltip.js │ └── foundation.topbar.js ├── rainbow-custom.min.js └── vendor │ ├── fastclick.js │ ├── jquery.cookie.js │ ├── jquery.js │ ├── modernizr.js │ └── placeholder.js ├── propel └── index.html ├── sitemap.xml └── tutorials └── index.html /404.html: -------------------------------------------------------------------------------- 1 |

404

2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | ormcheatsheet.com -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/designer/designer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/designer/designer.html -------------------------------------------------------------------------------- /_includes/designer/doctrine1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/designer/doctrine1.html -------------------------------------------------------------------------------- /_includes/designer/doctrine2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/designer/doctrine2.html -------------------------------------------------------------------------------- /_includes/designer/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/designer/general.html -------------------------------------------------------------------------------- /_includes/designer/propel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/designer/propel.html -------------------------------------------------------------------------------- /_includes/doctrine/behaviors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors.html -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/GoogleI18n.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/blameable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/blameable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/geographical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/geographical.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/GoogleI18n.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/blameable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/geographical.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/loggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/searchable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/sluggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/softdeleteable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/sortable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/taggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/timestampable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/link/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/link/tree.md: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/loggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/loggable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/GoogleI18n.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/blameable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/geographical.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/loggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/searchable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/sluggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/softdeleteable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/sortable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/taggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/timestampable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/more/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/more/tree.md: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/searchable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/searchable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/sluggable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/softdeleteable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/softdeleteable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/sortable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/taggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/timestampable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/tree.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/GoogleI18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/GoogleI18n.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/blameable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/blameable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/geographical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/geographical.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/loggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/loggable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/searchable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/searchable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/sluggable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/softdeleteable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/softdeleteable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/sortable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/taggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/taggable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/timestampable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine/behaviors/behaviors/yml/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/behaviors/behaviors/yml/tree.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association.html -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/manytooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/link/manytooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/manytooneinverse_options.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/link/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/manytooneowner_options.md: -------------------------------------------------------------------------------- 1 | Many to one owner side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/nonpkmanytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/nonpkmanytooneowner_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/link/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/link/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/link/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/manytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/manytooneinverse_options.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/manytooneowner_as.md: -------------------------------------------------------------------------------- 1 | Many to one owner side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/manytooneowner_options.md: -------------------------------------------------------------------------------- 1 | Many to one owner side with all properties: -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/manytooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/more/manytooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/manytooneinverse_options.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/more/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/manytooneowner_options.md: -------------------------------------------------------------------------------- 1 | Many to one owner side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/nonpkmanytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/nonpkmanytooneowner_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/more/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/more/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/more/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/nonpkmanytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side using non-PK foreign key: -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/nonpkmanytooneowner_as.md: -------------------------------------------------------------------------------- 1 | Many to one owner side using non-PK foreign key: -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/onetooneinverse_as.md: -------------------------------------------------------------------------------- 1 | One to one inverse side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/onetooneowner_as.md: -------------------------------------------------------------------------------- 1 | One to one owner side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/yml/manytooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/yml/manytooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/yml/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/yml/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/yml/manytooneowner_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/yml/manytooneowner_options.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/yml/nonpkmanytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/yml/nonpkmanytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/yml/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/yml/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/association/yml/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/association/yml/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/entity.html -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/alloptions.md: -------------------------------------------------------------------------------- 1 | Entity with all options defined: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/link/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/entity/link/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/link/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/entity/link/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/more/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/entity/more/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/more/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/entity/more/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/simpleentity.md: -------------------------------------------------------------------------------- 1 | Simple entity with a primary key and several fields: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/yml/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/entity/yml/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/entity/yml/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/entity/yml/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field.html -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/link/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/link/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/link/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/link/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/link/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/link/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/link/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/link/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/link/validators.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/more/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/more/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/more/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/more/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/more/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/more/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/more/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/more/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/more/validators.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/primarykey.md: -------------------------------------------------------------------------------- 1 | Primary key definition: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/primarykeyoptions.md: -------------------------------------------------------------------------------- 1 | Primary key with all base properties set: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/regularfield.md: -------------------------------------------------------------------------------- 1 | Regular field definition: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/regularfieldoptions.md: -------------------------------------------------------------------------------- 1 | Regular field with all options set: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/validators.md: -------------------------------------------------------------------------------- 1 | List of all validators: -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/yml/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/yml/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/yml/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/yml/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/yml/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/yml/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/yml/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/yml/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/field/yml/validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/field/yml/validators.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/id.html -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/index.md: -------------------------------------------------------------------------------- 1 | Non-unique index: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/link/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/index/link/index.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/link/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/index/link/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/more/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/index/more/index.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/more/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/index/more/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/uniqueindex.md: -------------------------------------------------------------------------------- 1 | Unique index definition: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/yml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/index/yml/index.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/index/yml/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/index/yml/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/indexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/indexes.html -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/inheritance.html -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/aggregation.md: -------------------------------------------------------------------------------- 1 | Column aggregation inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/aggregationchild.md: -------------------------------------------------------------------------------- 1 | Column aggregation inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/concretechild.md: -------------------------------------------------------------------------------- 1 | Concrete inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/concreteparent.md: -------------------------------------------------------------------------------- 1 | Concrete inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/link/aggregation.md: -------------------------------------------------------------------------------- 1 | Mapped superclass inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/link/aggregationchild.md: -------------------------------------------------------------------------------- 1 | Mapped supperclass inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/link/concretechild.md: -------------------------------------------------------------------------------- 1 | Class table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/link/concreteparent.md: -------------------------------------------------------------------------------- 1 | Class table inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/link/simplechild.md: -------------------------------------------------------------------------------- 1 | Single table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/link/simpleparent.md: -------------------------------------------------------------------------------- 1 | Single table inheritance parrent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/more/aggregation.md: -------------------------------------------------------------------------------- 1 | Mapped superclass inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/more/aggregationchild.md: -------------------------------------------------------------------------------- 1 | Mapped supperclass inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/more/concretechild.md: -------------------------------------------------------------------------------- 1 | Class table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/more/concreteparent.md: -------------------------------------------------------------------------------- 1 | Class table inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/more/simplechild.md: -------------------------------------------------------------------------------- 1 | Single table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/more/simpleparent.md: -------------------------------------------------------------------------------- 1 | Single table inheritance parrent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/simplechild.md: -------------------------------------------------------------------------------- 1 | Simple table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/simpleparent.md: -------------------------------------------------------------------------------- 1 | Simple table inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/yml/aggregation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/inheritance/yml/aggregation.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/yml/aggregationchild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/inheritance/yml/aggregationchild.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/yml/concretechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/inheritance/yml/concretechild.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/yml/concreteparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/inheritance/yml/concreteparent.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/yml/simplechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/inheritance/yml/simplechild.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/inheritance/yml/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/inheritance/yml/simpleparent.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/link/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/link/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/link/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/link/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/link/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/link/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/link/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/link/mnentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/link/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/link/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/link/nonpkmnentity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/mnentity.md: -------------------------------------------------------------------------------- 1 | Many-to-many entity. 2 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/more/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/more/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/more/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/more/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/more/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/more/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/more/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/more/mnentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/more/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/more/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/more/nonpkmnentity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/nonpkmanytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/nonpkmanytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/nonpkmnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/nonpkmnentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/yml/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/yml/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/yml/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/yml/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/yml/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/yml/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/yml/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/yml/mnentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/yml/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/yml/nonpkmanytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/yml/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/yml/nonpkmanytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassoc/yml/nonpkmnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassoc/yml/nonpkmnentity.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/mnassociation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/mnassociation.html -------------------------------------------------------------------------------- /_includes/doctrine/elements/schemafile/link/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/schemafile/link/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/schemafile/more/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/schemafile/more/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/schemafile/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/schemafile/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine/elements/schemafile/yml/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/elements/schemafile/yml/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started.html -------------------------------------------------------------------------------- /_includes/doctrine/getting-started/basic-use/db_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started/basic-use/db_model.md -------------------------------------------------------------------------------- /_includes/doctrine/getting-started/basic-use/model_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started/basic-use/model_db.md -------------------------------------------------------------------------------- /_includes/doctrine/getting-started/installation/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started/installation/implementation.md -------------------------------------------------------------------------------- /_includes/doctrine/getting-started/installation/install-pear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started/installation/install-pear.md -------------------------------------------------------------------------------- /_includes/doctrine/getting-started/installation/install-svn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started/installation/install-svn.md -------------------------------------------------------------------------------- /_includes/doctrine/getting-started/symfony/symfonybasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started/symfony/symfonybasics.md -------------------------------------------------------------------------------- /_includes/doctrine/getting-started/symfony/symfonyinstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/getting-started/symfony/symfonyinstall.md -------------------------------------------------------------------------------- /_includes/doctrine/link-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/link-section.html -------------------------------------------------------------------------------- /_includes/doctrine/links/blogs.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /_includes/doctrine/links/helpful-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/links/helpful-links.md -------------------------------------------------------------------------------- /_includes/doctrine/links/official-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/links/official-sites.md -------------------------------------------------------------------------------- /_includes/doctrine/model-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine/model-elements.html -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors.html -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/blameable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/blameable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/iptraceable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/iptraceable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/blameable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/iptraceable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/loggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/referenceintegrity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/sluggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/softdeleteable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/sortable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/timestampable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/link/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/tree.md: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/link/uploadable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/loggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/loggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/blameable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/iptraceable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/loggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/referenceintegrity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/sluggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/softdeleteable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/sortable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/timestampable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/more/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/tree.md: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/more/uploadable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/blameable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/blameable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/iptraceable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/iptraceable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/loggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/loggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/referenceintegrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/referenceintegrity.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/sluggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/softdeleteable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/softdeleteable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/sortable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/timestampable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/tree.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/php/uploadable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/php/uploadable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/referenceintegrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/referenceintegrity.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/sluggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/softdeleteable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/softdeleteable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/sortable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/timestampable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/tree.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/uploadable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/uploadable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/blameable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/blameable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/iptraceable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/iptraceable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/loggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/loggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/referenceintegrity.md: -------------------------------------------------------------------------------- 1 | not documented -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/sluggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/softdeleteable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/softdeleteable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/sortable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/timestampable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/tree.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/xml/uploadable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/xml/uploadable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/blameable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/blameable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/iptraceable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/iptraceable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/loggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/loggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/referenceintegrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/referenceintegrity.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/sluggable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/softdeleteable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/softdeleteable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/sortable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/timestampable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/translatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/translatable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/tree.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/behaviors/yml/uploadable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/behaviors/yml/uploadable.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/installation/configzend2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/installation/configzend2.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/installation/installsymfony2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/installation/installsymfony2.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/installation/installzend2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/installation/installzend2.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/installation/listenerssymfony2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/installation/listenerssymfony2.md -------------------------------------------------------------------------------- /_includes/doctrine2/behaviors/installation/mappingsymfony2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/behaviors/installation/mappingsymfony2.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association.html -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/link/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/link/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/link/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/link/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/manytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/manytooneinverse_options.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/manytooneowner_as.md: -------------------------------------------------------------------------------- 1 | Many to one owner side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/manytooneowner_options.md: -------------------------------------------------------------------------------- 1 | Many to one owner side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/more/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/more/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/more/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/more/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/onetooneinverse_as.md: -------------------------------------------------------------------------------- 1 | One to one inverse side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/onetooneowner_as.md: -------------------------------------------------------------------------------- 1 | One to one owner side: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/php/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/php/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/php/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/php/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/php/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/php/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/xml/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/xml/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/xml/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/xml/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/xml/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/xml/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/yml/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/yml/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/yml/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/yml/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/association/yml/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/association/yml/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity.html -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/alloptions.md: -------------------------------------------------------------------------------- 1 | Entity with all options defined: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/link/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/link/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/link/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/link/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/more/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/more/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/more/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/more/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/php/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/php/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/php/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/php/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/simpleentity.md: -------------------------------------------------------------------------------- 1 | Simple entity with a primary key and several fields: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/xml/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/xml/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/xml/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/xml/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/yml/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/yml/alloptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/entity/yml/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/entity/yml/simpleentity.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field.html -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/link/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/link/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/link/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/link/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/link/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/link/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/link/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/link/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/more/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/more/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/more/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/more/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/more/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/more/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/more/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/more/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/php/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/php/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/php/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/php/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/php/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/php/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/php/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/php/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/primarykey.md: -------------------------------------------------------------------------------- 1 | Primary key definition: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/primarykeyoptions.md: -------------------------------------------------------------------------------- 1 | Primary key with all base properties set: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/regularfield.md: -------------------------------------------------------------------------------- 1 | Regular field definition: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/regularfieldoptions.md: -------------------------------------------------------------------------------- 1 | Regular field with all options set: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/xml/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/xml/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/xml/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/xml/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/xml/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/xml/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/xml/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/xml/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/yml/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/yml/primarykey.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/yml/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/yml/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/yml/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/yml/regularfield.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/field/yml/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/field/yml/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/id.html -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/index.md: -------------------------------------------------------------------------------- 1 | Non-unique index: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/link/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/link/index.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/link/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/link/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/more/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/more/index.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/more/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/more/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/php/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/php/index.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/php/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/php/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/uniqueindex.md: -------------------------------------------------------------------------------- 1 | Unique index definition: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/xml/index.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/xml/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/xml/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/yml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/yml/index.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/index/yml/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/index/yml/uniqueindex.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/indexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/indexes.html -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance.html -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/classtablechild.md: -------------------------------------------------------------------------------- 1 | Class table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/classtableparent.md: -------------------------------------------------------------------------------- 1 | Class table inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/link/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/link/classtablechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/link/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/link/classtableparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/link/simplechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/link/simplechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/link/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/link/simpleparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/link/supperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/link/supperclass.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/link/supperclasschild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/link/supperclasschild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/more/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/more/classtablechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/more/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/more/classtableparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/more/simplechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/more/simplechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/more/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/more/simpleparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/more/supperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/more/supperclass.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/more/supperclasschild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/more/supperclasschild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/php/classtablechild.md: -------------------------------------------------------------------------------- 1 | ~~~php 2 | /** 3 | * @ORM\Entity 4 | */ 5 | class book extends itemRecord 6 | ~~~ 7 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/php/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/php/classtableparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/php/simplechild.md: -------------------------------------------------------------------------------- 1 | ~~~php 2 | /** 3 | * @ORM\Entity 4 | */ 5 | class book extends itemRecord 6 | ~~~ 7 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/php/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/php/simpleparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/php/supperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/php/supperclass.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/php/supperclasschild.md: -------------------------------------------------------------------------------- 1 | ~~~php 2 | /** 3 | * @ORM\Entity 4 | */ 5 | class book extends itemRecord 6 | ~~~ 7 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/simplechild.md: -------------------------------------------------------------------------------- 1 | Single table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/simpleparent.md: -------------------------------------------------------------------------------- 1 | Single table inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/supperclass.md: -------------------------------------------------------------------------------- 1 | Mapped superclass inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/supperclasschild.md: -------------------------------------------------------------------------------- 1 | Mapped supperclass inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/xml/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/xml/classtablechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/xml/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/xml/classtableparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/xml/simplechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/xml/simplechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/xml/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/xml/simpleparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/xml/supperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/xml/supperclass.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/xml/supperclasschild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/xml/supperclasschild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/yml/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/yml/classtablechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/yml/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/yml/classtableparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/yml/simplechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/yml/simplechild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/yml/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/yml/simpleparent.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/yml/supperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/yml/supperclass.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/inheritance/yml/supperclasschild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/inheritance/yml/supperclasschild.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/link/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/link/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/link/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/link/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/link/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/link/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/mnentity.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/more/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/more/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/more/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/more/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/more/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/more/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/php/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/php/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/php/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/php/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/php/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/php/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/xml/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/xml/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/xml/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/xml/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/xml/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/xml/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/yml/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/yml/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/yml/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/yml/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassoc/yml/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassoc/yml/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/mnassociation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/mnassociation.html -------------------------------------------------------------------------------- /_includes/doctrine2/elements/schemafile/link/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/schemafile/link/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/schemafile/more/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/schemafile/more/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/schemafile/php/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/schemafile/php/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/schemafile/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/schemafile/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/schemafile/xml/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/schemafile/xml/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine2/elements/schemafile/yml/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/elements/schemafile/yml/schemafile.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started.html -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/basic-use/db_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/basic-use/db_model.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/basic-use/model_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/basic-use/model_db.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/installation/commandline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/installation/commandline.html -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/installation/commandline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/installation/commandline.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/installation/commandline23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/installation/commandline23.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/installation/commandline24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/installation/commandline24.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/installation/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/installation/config.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/installation/entitymanager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/installation/entitymanager.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/installation/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/installation/install.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/symfony/symfony2basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/symfony/symfony2basics.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/symfony/symfony2config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/symfony/symfony2config.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/symfony/symfony2install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/symfony/symfony2install.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/symfony/symfonybasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/symfony/symfonybasics.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/symfony/symfonyconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/symfony/symfonyconfig.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/symfony/symfonyinstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/symfony/symfonyinstall.md -------------------------------------------------------------------------------- /_includes/doctrine2/getting-started/zend/zendinstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/getting-started/zend/zendinstall.md -------------------------------------------------------------------------------- /_includes/doctrine2/link-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/link-section.html -------------------------------------------------------------------------------- /_includes/doctrine2/links/blogs.md: -------------------------------------------------------------------------------- 1 | - [l3pp4rd's developer blog](http://www.gediminasm.org/) 2 | 3 | -------------------------------------------------------------------------------- /_includes/doctrine2/links/helpful-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/links/helpful-links.md -------------------------------------------------------------------------------- /_includes/doctrine2/links/official-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/links/official-sites.md -------------------------------------------------------------------------------- /_includes/doctrine2/model-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/doctrine2/model-elements.html -------------------------------------------------------------------------------- /_includes/elem_docu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/elem_docu.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/getcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/getcode.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/images/big_model.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/big_model.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/alloptions.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/alloptions.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/field.png.alttext.html: -------------------------------------------------------------------------------- 1 | entity and selected field in Skipper ER diagram. -------------------------------------------------------------------------------- /_includes/images/elements/fieldalloptions.png.alttext.html: -------------------------------------------------------------------------------- 1 | field highlighted in Skipper visual model. -------------------------------------------------------------------------------- /_includes/images/elements/foreignkey.png.alttext.html: -------------------------------------------------------------------------------- 1 | association and its foreign key in Skipper ER diagram. -------------------------------------------------------------------------------- /_includes/images/elements/indexes.png.alttext.html: -------------------------------------------------------------------------------- 1 | entity in Skipper visual model -------------------------------------------------------------------------------- /_includes/images/elements/inh_child.png.alttext.html: -------------------------------------------------------------------------------- 1 | inheritance generated in the Skipper ER diagram. -------------------------------------------------------------------------------- /_includes/images/elements/inh_par.png.alttext.html: -------------------------------------------------------------------------------- 1 | inheritance displayed in Skipper visual model. -------------------------------------------------------------------------------- /_includes/images/elements/inheritance.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/inheritance.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/manytomany.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/manytomany.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/manytomanyinverse.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/manytomanyinverse.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/manytomanyowner.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/manytomanyowner.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/manytoone.png.alttext.html: -------------------------------------------------------------------------------- 1 | many to one association in Skipper visual model. -------------------------------------------------------------------------------- /_includes/images/elements/manytooneinverse.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/manytooneinverse.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/manytooneowner.png.alttext.html: -------------------------------------------------------------------------------- 1 | many to one association in Skipper ER diagram. -------------------------------------------------------------------------------- /_includes/images/elements/model.png.alttext.html: -------------------------------------------------------------------------------- 1 | schema as ER diagram automatically generated by Skipper. -------------------------------------------------------------------------------- /_includes/images/elements/nonpkmanytomany.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/nonpkmanytomany.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/nonpkmanytomanyinverse.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/nonpkmanytomanyinverse.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/nonpkmanytomanyowner.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/nonpkmanytomanyowner.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/nonpkmanytooneinverse.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/nonpkmanytooneinverse.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/nonpkmanytooneowner.png.alttext.html: -------------------------------------------------------------------------------- 1 | many to one association in Skipper ER diagram. -------------------------------------------------------------------------------- /_includes/images/elements/onetoone.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/onetoone.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/onetooneinverse.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/onetooneinverse.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/onetooneowner.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/onetooneowner.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/placeholder.png.alttext.html: -------------------------------------------------------------------------------- 1 | model placeholder. -------------------------------------------------------------------------------- /_includes/images/elements/primarykey.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/elements/primarykey.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/elements/simpleentity.png.alttext.html: -------------------------------------------------------------------------------- 1 | entity displayed in Skipper ER diagram. -------------------------------------------------------------------------------- /_includes/images/model.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/model.png.alttext.html -------------------------------------------------------------------------------- /_includes/images/skipper/big_model.png.alttext.html: -------------------------------------------------------------------------------- 1 | schema displayed as ER diagram by Skipper. -------------------------------------------------------------------------------- /_includes/images/skipper/button.png.alttext.html: -------------------------------------------------------------------------------- 1 | download Skipper trial -------------------------------------------------------------------------------- /_includes/images/skipper/entityeditor.png.alttext.html: -------------------------------------------------------------------------------- 1 | entity details in Skipper visual editor. -------------------------------------------------------------------------------- /_includes/images/skipper/export.png.alttext.html: -------------------------------------------------------------------------------- 1 | schema definitions export results. -------------------------------------------------------------------------------- /_includes/images/skipper/import.png.alttext.html: -------------------------------------------------------------------------------- 1 | schema definitions files import wizard in Skipper. -------------------------------------------------------------------------------- /_includes/images/skipper/skipper.png.alttext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/images/skipper/skipper.png.alttext.html -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/navigation.html -------------------------------------------------------------------------------- /_includes/navigation_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/navigation_about.html -------------------------------------------------------------------------------- /_includes/navigation_doctrine1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/navigation_doctrine1.html -------------------------------------------------------------------------------- /_includes/navigation_doctrine2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/navigation_doctrine2.html -------------------------------------------------------------------------------- /_includes/navigation_general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/navigation_general.html -------------------------------------------------------------------------------- /_includes/navigation_propel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/navigation_propel.html -------------------------------------------------------------------------------- /_includes/propel/behaviors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors.html -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/aggregate.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/alternativecoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/alternativecoding.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/archivable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/archivable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/autoaddpk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/autoaddpk.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/custombehavior.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/i18n.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/aggregate.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/alternativecoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/alternativecoding.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/archivable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/archivable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/autoaddpk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/autoaddpk.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/custombehavior.md: -------------------------------------------------------------------------------- 1 | [propel documentation]( -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/i18n.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/nested_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/nested_set.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/query_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/query_cache.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/sluggable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/softdelete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/softdelete.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/sortable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/timestampable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/link/versionable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/link/versionable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/aggregate.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/alternativecoding.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/archivable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/autoaddpk.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/custombehavior.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/i18n.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/nested_set.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/query_cache.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/sluggable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/softdelete.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/more/sortable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/timestampable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/more/versionable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/nested_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/nested_set.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/query_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/query_cache.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/sluggable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/softdelete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/softdelete.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/sortable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/timestampable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/versionable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/versionable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/aggregate.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/alternativecoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/alternativecoding.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/archivable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/archivable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/autoaddpk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/autoaddpk.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/custombehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/custombehavior.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/i18n.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/nested_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/nested_set.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/query_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/query_cache.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/sluggable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/softdelete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/softdelete.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/sortable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/timestampable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/xml/versionable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/xml/versionable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/aggregate.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/alternativecoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/alternativecoding.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/archivable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/archivable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/autoaddpk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/autoaddpk.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/custombehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/custombehavior.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/i18n.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/nested_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/nested_set.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/query_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/query_cache.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/sluggable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/sluggable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/softdelete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/softdelete.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/sortable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/sortable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/timestampable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/timestampable.md -------------------------------------------------------------------------------- /_includes/propel/behaviors/behaviors/yml/versionable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/behaviors/behaviors/yml/versionable.md -------------------------------------------------------------------------------- /_includes/propel/elements/association.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association.html -------------------------------------------------------------------------------- /_includes/propel/elements/association/link/manytooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/link/manytooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/link/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/link/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/link/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/link/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/link/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/link/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/manytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/manytooneinverse_options.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/manytooneowner_as.md: -------------------------------------------------------------------------------- 1 | Many to one owner side: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/manytooneowner_options.md: -------------------------------------------------------------------------------- 1 | Many to one owner side with all properties: -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/manytooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/more/manytooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/manytooneinverse_options.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/more/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/manytooneowner_options.md: -------------------------------------------------------------------------------- 1 | Many to one owner side with all properties: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/nonpkmanytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/nonpkmanytooneowner_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/more/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/more/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/more/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/nonpkmanytooneinverse_as.md: -------------------------------------------------------------------------------- 1 | Many to one inverse side using non-PK foreign key: -------------------------------------------------------------------------------- /_includes/propel/elements/association/nonpkmanytooneowner_as.md: -------------------------------------------------------------------------------- 1 | Many to one owner side using non-PK foreign key: -------------------------------------------------------------------------------- /_includes/propel/elements/association/onetooneinverse_as.md: -------------------------------------------------------------------------------- 1 | One to one inverse side: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/onetooneowner_as.md: -------------------------------------------------------------------------------- 1 | One to one owner side: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/association/xml/manytooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/xml/manytooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/xml/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/xml/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/xml/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/xml/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/xml/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/xml/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/yml/manytooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/yml/manytooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/yml/manytooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/yml/manytooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/yml/onetooneinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/yml/onetooneinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/association/yml/onetooneowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/association/yml/onetooneowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity.html -------------------------------------------------------------------------------- /_includes/propel/elements/entity/alloptions.md: -------------------------------------------------------------------------------- 1 | Table element with all options defined: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/entity/link/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/link/alloptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity/link/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/link/simpleentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity/more/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/more/alloptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity/more/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/more/simpleentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity/simpleentity.md: -------------------------------------------------------------------------------- 1 | Simple table element with a primary key and several fields: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/entity/xml/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/xml/alloptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity/xml/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/xml/simpleentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity/yml/alloptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/yml/alloptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/entity/yml/simpleentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/entity/yml/simpleentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field.html -------------------------------------------------------------------------------- /_includes/propel/elements/field/link/foreignkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/link/foreignkey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/link/foreignkeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/link/foreignkeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/link/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/link/primarykey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/link/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/link/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/link/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/link/regularfield.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/link/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/link/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/link/validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/link/validators.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/more/foreignkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/more/foreignkey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/more/foreignkeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/more/foreignkeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/more/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/more/primarykey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/more/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/more/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/more/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/more/regularfield.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/more/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/more/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/more/validators.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/elements/field/primarykey.md: -------------------------------------------------------------------------------- 1 | Primary key definition: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/field/primarykeyoptions.md: -------------------------------------------------------------------------------- 1 | Primary key with all base properties set: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/field/regularfield.md: -------------------------------------------------------------------------------- 1 | Regular column definition: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/field/regularfieldoptions.md: -------------------------------------------------------------------------------- 1 | Column with all options set: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/field/validators.md: -------------------------------------------------------------------------------- 1 | Column with all validators listed: -------------------------------------------------------------------------------- /_includes/propel/elements/field/xml/foreignkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/xml/foreignkey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/xml/foreignkeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/xml/foreignkeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/xml/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/xml/primarykey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/xml/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/xml/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/xml/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/xml/regularfield.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/xml/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/xml/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/xml/validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/xml/validators.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/yml/foreignkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/yml/foreignkey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/yml/foreignkeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/yml/foreignkeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/yml/primarykey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/yml/primarykey.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/yml/primarykeyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/yml/primarykeyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/yml/regularfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/yml/regularfield.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/yml/regularfieldoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/field/yml/regularfieldoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/field/yml/validators.md: -------------------------------------------------------------------------------- 1 | ~~~yaml 2 | ~~~ -------------------------------------------------------------------------------- /_includes/propel/elements/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/id.html -------------------------------------------------------------------------------- /_includes/propel/elements/index/index.md: -------------------------------------------------------------------------------- 1 | Non-unique index: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/index/link/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/link/index.md -------------------------------------------------------------------------------- /_includes/propel/elements/index/link/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/link/uniqueindex.md -------------------------------------------------------------------------------- /_includes/propel/elements/index/more/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/more/index.md -------------------------------------------------------------------------------- /_includes/propel/elements/index/more/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/more/uniqueindex.md -------------------------------------------------------------------------------- /_includes/propel/elements/index/uniqueindex.md: -------------------------------------------------------------------------------- 1 | Unique index definition: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/index/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/xml/index.md -------------------------------------------------------------------------------- /_includes/propel/elements/index/xml/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/xml/uniqueindex.md -------------------------------------------------------------------------------- /_includes/propel/elements/index/yml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/yml/index.md -------------------------------------------------------------------------------- /_includes/propel/elements/index/yml/uniqueindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/index/yml/uniqueindex.md -------------------------------------------------------------------------------- /_includes/propel/elements/indexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/indexes.html -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance.html -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/classtablechild.md: -------------------------------------------------------------------------------- 1 | Class table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/classtableparent.md: -------------------------------------------------------------------------------- 1 | Class table inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/concretechild.md: -------------------------------------------------------------------------------- 1 | Concrete inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/concreteparent.md: -------------------------------------------------------------------------------- 1 | Concrete inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/classtablechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/classtableparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/concretechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/concretechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/concreteparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/concreteparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/simplechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/simplechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/simpleparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/supperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/supperclass.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/link/supperclasschild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/link/supperclasschild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/more/classtablechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/more/classtableparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/concretechild.md: -------------------------------------------------------------------------------- 1 | Concrete inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/concreteparent.md: -------------------------------------------------------------------------------- 1 | Concrete inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/simplechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/more/simplechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/more/simpleparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/supperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/more/supperclass.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/more/supperclasschild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/more/supperclasschild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/simplechild.md: -------------------------------------------------------------------------------- 1 | Single table inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/simpleparent.md: -------------------------------------------------------------------------------- 1 | Single table inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/supperclass.md: -------------------------------------------------------------------------------- 1 | Mapped superclass inheritance parent: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/supperclasschild.md: -------------------------------------------------------------------------------- 1 | Mapped supperclass inheritance child: 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/xml/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/xml/classtablechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/xml/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/xml/classtableparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/xml/concretechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/xml/concretechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/xml/concreteparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/xml/concreteparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/xml/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/xml/simpleparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/yml/classtablechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/yml/classtablechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/yml/classtableparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/yml/classtableparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/yml/concretechild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/yml/concretechild.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/yml/concreteparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/yml/concreteparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/inheritance/yml/simpleparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/inheritance/yml/simpleparent.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/link/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/link/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/link/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/link/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/link/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/link/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/link/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/link/mnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/link/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/link/nonpkmanytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/link/nonpkmnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/link/nonpkmnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/mnentity.md: -------------------------------------------------------------------------------- 1 | Many-to-many entity. 2 | -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/more/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/more/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/more/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/more/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/more/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/more/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/more/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/more/mnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/more/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/more/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/more/nonpkmnentity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/nonpkmanytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/nonpkmanytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/nonpkmnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/nonpkmnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/xml/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/xml/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/xml/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/xml/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/xml/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/xml/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/xml/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/xml/mnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/xml/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/xml/nonpkmanytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/xml/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/xml/nonpkmanytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/xml/nonpkmnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/xml/nonpkmnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/yml/manytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/yml/manytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/yml/manytomanyoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/yml/manytomanyoptions.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/yml/manytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/yml/manytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/yml/mnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/yml/mnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/yml/nonpkmanytomanyinverse_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/yml/nonpkmanytomanyinverse_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/yml/nonpkmanytomanyowner_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/yml/nonpkmanytomanyowner_as.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassoc/yml/nonpkmnentity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassoc/yml/nonpkmnentity.md -------------------------------------------------------------------------------- /_includes/propel/elements/mnassociation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/mnassociation.html -------------------------------------------------------------------------------- /_includes/propel/elements/module/link/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/module/link/module.md -------------------------------------------------------------------------------- /_includes/propel/elements/module/module.md: -------------------------------------------------------------------------------- 1 | Database element (package) with all properties defined: -------------------------------------------------------------------------------- /_includes/propel/elements/module/more/module.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/propel/elements/module/xml/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/module/xml/module.md -------------------------------------------------------------------------------- /_includes/propel/elements/module/yml/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/module/yml/module.md -------------------------------------------------------------------------------- /_includes/propel/elements/schemafile/link/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/schemafile/link/schemafile.md -------------------------------------------------------------------------------- /_includes/propel/elements/schemafile/more/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/schemafile/more/schemafile.md -------------------------------------------------------------------------------- /_includes/propel/elements/schemafile/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/schemafile/schemafile.md -------------------------------------------------------------------------------- /_includes/propel/elements/schemafile/xml/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/schemafile/xml/schemafile.md -------------------------------------------------------------------------------- /_includes/propel/elements/schemafile/yml/schemafile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/elements/schemafile/yml/schemafile.md -------------------------------------------------------------------------------- /_includes/propel/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/getting-started.html -------------------------------------------------------------------------------- /_includes/propel/getting-started/db_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/getting-started/db_model.md -------------------------------------------------------------------------------- /_includes/propel/getting-started/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/getting-started/install.md -------------------------------------------------------------------------------- /_includes/propel/getting-started/model_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/getting-started/model_db.md -------------------------------------------------------------------------------- /_includes/propel/getting-started/symfony2basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/getting-started/symfony2basics.md -------------------------------------------------------------------------------- /_includes/propel/getting-started/symfony2config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/getting-started/symfony2config.md -------------------------------------------------------------------------------- /_includes/propel/getting-started/symfony2install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/getting-started/symfony2install.md -------------------------------------------------------------------------------- /_includes/propel/link-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/link-section.html -------------------------------------------------------------------------------- /_includes/propel/links/blogs.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /_includes/propel/links/helpful-links.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /_includes/propel/links/official-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/links/official-sites.md -------------------------------------------------------------------------------- /_includes/propel/model-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/propel/model-elements.html -------------------------------------------------------------------------------- /_includes/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_includes/section.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/about/index.html -------------------------------------------------------------------------------- /cakephp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/cakephp/index.html -------------------------------------------------------------------------------- /css/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/css/foundation.css -------------------------------------------------------------------------------- /css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/css/foundation.min.css -------------------------------------------------------------------------------- /css/frekie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/css/frekie.css -------------------------------------------------------------------------------- /css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/css/normalize.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/css/style.css -------------------------------------------------------------------------------- /doctrine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/doctrine/index.html -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/examples/index.html -------------------------------------------------------------------------------- /images/big_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/big_model.png -------------------------------------------------------------------------------- /images/elements/alloptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/alloptions.png -------------------------------------------------------------------------------- /images/elements/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/field.png -------------------------------------------------------------------------------- /images/elements/fieldalloptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/fieldalloptions.png -------------------------------------------------------------------------------- /images/elements/foreignkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/foreignkey.png -------------------------------------------------------------------------------- /images/elements/indexes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/indexes.png -------------------------------------------------------------------------------- /images/elements/inh_child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/inh_child.png -------------------------------------------------------------------------------- /images/elements/inh_par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/inh_par.png -------------------------------------------------------------------------------- /images/elements/inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/inheritance.png -------------------------------------------------------------------------------- /images/elements/manytomany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/manytomany.png -------------------------------------------------------------------------------- /images/elements/manytomanyinverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/manytomanyinverse.png -------------------------------------------------------------------------------- /images/elements/manytomanyowner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/manytomanyowner.png -------------------------------------------------------------------------------- /images/elements/manytoone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/manytoone.png -------------------------------------------------------------------------------- /images/elements/manytooneinverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/manytooneinverse.png -------------------------------------------------------------------------------- /images/elements/manytooneowner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/manytooneowner.png -------------------------------------------------------------------------------- /images/elements/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/model.png -------------------------------------------------------------------------------- /images/elements/nonpkmanytomany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/nonpkmanytomany.png -------------------------------------------------------------------------------- /images/elements/nonpkmanytomanyinverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/nonpkmanytomanyinverse.png -------------------------------------------------------------------------------- /images/elements/nonpkmanytomanyowner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/nonpkmanytomanyowner.png -------------------------------------------------------------------------------- /images/elements/nonpkmanytooneinverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/nonpkmanytooneinverse.png -------------------------------------------------------------------------------- /images/elements/nonpkmanytooneowner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/nonpkmanytooneowner.png -------------------------------------------------------------------------------- /images/elements/onetoone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/onetoone.png -------------------------------------------------------------------------------- /images/elements/onetooneinverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/onetooneinverse.png -------------------------------------------------------------------------------- /images/elements/onetooneowner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/onetooneowner.png -------------------------------------------------------------------------------- /images/elements/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/placeholder.png -------------------------------------------------------------------------------- /images/elements/primarykey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/primarykey.png -------------------------------------------------------------------------------- /images/elements/simpleentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/elements/simpleentity.png -------------------------------------------------------------------------------- /images/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/model.png -------------------------------------------------------------------------------- /images/skipper/big_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/skipper/big_model.png -------------------------------------------------------------------------------- /images/skipper/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/skipper/button.png -------------------------------------------------------------------------------- /images/skipper/entityeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/skipper/entityeditor.png -------------------------------------------------------------------------------- /images/skipper/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/skipper/export.png -------------------------------------------------------------------------------- /images/skipper/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/skipper/import.png -------------------------------------------------------------------------------- /images/skipper/skipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/images/skipper/skipper.png -------------------------------------------------------------------------------- /img/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/index.html -------------------------------------------------------------------------------- /js/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation.min.js -------------------------------------------------------------------------------- /js/foundation/foundation.abide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.abide.js -------------------------------------------------------------------------------- /js/foundation/foundation.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.accordion.js -------------------------------------------------------------------------------- /js/foundation/foundation.alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.alert.js -------------------------------------------------------------------------------- /js/foundation/foundation.clearing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.clearing.js -------------------------------------------------------------------------------- /js/foundation/foundation.dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.dropdown.js -------------------------------------------------------------------------------- /js/foundation/foundation.equalizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.equalizer.js -------------------------------------------------------------------------------- /js/foundation/foundation.interchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.interchange.js -------------------------------------------------------------------------------- /js/foundation/foundation.joyride.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.joyride.js -------------------------------------------------------------------------------- /js/foundation/foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.js -------------------------------------------------------------------------------- /js/foundation/foundation.magellan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.magellan.js -------------------------------------------------------------------------------- /js/foundation/foundation.offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.offcanvas.js -------------------------------------------------------------------------------- /js/foundation/foundation.orbit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.orbit.js -------------------------------------------------------------------------------- /js/foundation/foundation.reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.reveal.js -------------------------------------------------------------------------------- /js/foundation/foundation.tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.tab.js -------------------------------------------------------------------------------- /js/foundation/foundation.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.tooltip.js -------------------------------------------------------------------------------- /js/foundation/foundation.topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/foundation/foundation.topbar.js -------------------------------------------------------------------------------- /js/rainbow-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/rainbow-custom.min.js -------------------------------------------------------------------------------- /js/vendor/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/vendor/fastclick.js -------------------------------------------------------------------------------- /js/vendor/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/vendor/jquery.cookie.js -------------------------------------------------------------------------------- /js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/vendor/jquery.js -------------------------------------------------------------------------------- /js/vendor/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/vendor/modernizr.js -------------------------------------------------------------------------------- /js/vendor/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/js/vendor/placeholder.js -------------------------------------------------------------------------------- /propel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/propel/index.html -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlantic18/ORMCheatSheet/HEAD/sitemap.xml -------------------------------------------------------------------------------- /tutorials/index.html: -------------------------------------------------------------------------------- 1 | TU BUDE HEZKY TUTORIAL JAK TO UDELAT V ORM DESIGNERu 2 | --------------------------------------------------------------------------------