]> Raphaƫl G. Git Repositories - blogbundle/blobdiff - Resources/config/doctrine/Author.orm.yml
Remove unused doctrine orm config
[blogbundle] / Resources / config / doctrine / Author.orm.yml
diff --git a/Resources/config/doctrine/Author.orm.yml b/Resources/config/doctrine/Author.orm.yml
deleted file mode 100644 (file)
index 176fe32..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-Rapsys\BlogBundle\Entity\Author:
-    type: entity
-    repositoryClass: Rapsys\BlogBundle\Repository\AuthorRepository
-    table: authors
-    indexes:
-        name:
-            columns: [ name ]
-    id:
-        id:
-            type: smallint
-            generator: 
-                strategy: AUTO
-            options:
-                unsigned: true
-    fields:
-        name:
-            type: string
-            length: 64
-        slug:
-            type: string
-            length: 64
-            unique: true
-        created:
-            type: datetime
-        updated:
-            type: datetime
-    oneToMany:
-        articles:
-            targetEntity: Rapsys\BlogBundle\Entity\Article
-            mappedBy: author
-        author_translations:
-            targetEntity: Rapsys\BlogBundle\Entity\AuthorTranslation
-            mappedBy: author