-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtorque.xml
More file actions
29 lines (26 loc) · 1.29 KB
/
torque.xml
File metadata and controls
29 lines (26 loc) · 1.29 KB
1
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE database SYSTEM "database_3_3.dtd"><database name="mersdb" defaultIdMethod="idbroker"> <table name="book" > <column name="book_id" required="true" primaryKey="true" type="BIGINT"/> <column name="isbn" required="true" type="VARCHAR" size="11"/> <column name="create_date" required="true" type="TIMESTAMP" /> <column name="update_date" type="TIMESTAMP" /> <column name="update_by" type="VARCHAR" size="12" /> </table> <table name="inventory" description="users Table"> <column name="book_id" required="true" primaryKey="true" type="BIGINT"/> <column name="location_id" required="true" primaryKey="true" type="BIGINT"/> <column name="create_date" required="false" type="TIMESTAMP" /> <column name="update_date" type="TIMESTAMP" /> <column name="update_by" type="VARCHAR" size="12" /> <column name="comment" type="VARCHAR" size="255" /> </table> <table name="location" description="users Table"> <column name="location_id" required="true" primaryKey="true" type="BIGINT"/> <column name="create_date" required="false" type="TIMESTAMP" /> <column name="update_date" type="TIMESTAMP" /> <column name="update_by" type="VARCHAR" size="12" /> <column name="comment" type="VARCHAR" size="255" /> </table> </database>