Name
metadata — Used for meta-data definition.
Synopsis
<metadata [create="booleanValue"]>
	... 
</metadata>
				
Description
					This element is the beggining of a meta-data definition.
				
Attributes
- create
- 
								If it is - true, at the generation moment, 
								the application will destroy and then create the tables
								in the underlying data source, in a RDBMS, will issue
								a- DROP TABLE someTablefollowed by a- CREATE TABLE someTable.
 
Example
Example 6. Metadata example
<project name="testProject">
	<metadata create="true">
	...
	</metadata>
	<output>
	...
	</output>
</project>