Author: xavier Date: 2010-02-22 12:43:42 +0100 (Mon, 22 Feb 2010) New Revision: 28180
Modified: plugins/sfDoctrineActAsTaggablePlugin/trunk/config/doctrine/schema.yml Log: fixing schema in order to get a vaid yml syntax - see http://xav.cc/28178 Modified: plugins/sfDoctrineActAsTaggablePlugin/trunk/config/doctrine/schema.yml =================================================================== --- plugins/sfDoctrineActAsTaggablePlugin/trunk/config/doctrine/schema.yml 2010-02-22 11:15:09 UTC (rev 28179) +++ plugins/sfDoctrineActAsTaggablePlugin/trunk/config/doctrine/schema.yml 2010-02-22 11:43:42 UTC (rev 28180) @@ -6,13 +6,13 @@ # autoincrement: true name: type: string(100) - is_triple: + is_triple: type: boolean - triple_namespace: + triple_namespace: type: string(100) - triple_key: + triple_key: type: string(100) - triple_value: + triple_value: type: string(100) indexes: name: @@ -21,35 +21,35 @@ # The SQLite driver throws an exception, and justly so. Same for # the other three indexes here. The indexes on Tagging were # set up correctly - fields: [name] + fields: [name] triple1: - fields: [triple_namespace] + fields: [triple_namespace] triple2: - fields: [triple_key] + fields: [triple_key] triple3: - fields: [triple_value] - + fields: [triple_value] + Tagging: columns: # id: # type: integer(4) # primary: true # autoincrement: true - tag_id: + tag_id: type: integer notnull: true - taggable_model: + taggable_model: type: string(30) - taggable_id: + taggable_id: type: integer relations: - Tag: + Tag: ~ indexes: tag: - fields: [tag_id] + fields: [tag_id] taggable: - fields: [taggable_model, taggable_id] + fields: [taggable_model, taggable_id] attributes: - # don't export constraints. This is necessary because multiple models can + # don't export constraints. This is necessary because multiple models can # join Tagging on taggable_id - export: [ all, constraints ] + export: [ all, constraints ] -- You received this message because you are subscribed to the Google Groups "symfony SVN" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/symfony-svn?hl=en.
