| | This file copyright (c) 2004 SO.MUS.AR. s.a.s. | Subject to the license published at | http://www.somusar.com/contact/poc_request | db_schema "Database schema" | | Define a wrapper software entity for the database schema, | to generate drop table/create table statements. | | For some reason the target SQL script contains several tables | that get dropped without being created afterwards. | Use "thing" to comply with that target. thing item_details "Item details" thing item "Item" thing product_details "Product details" thing product "Product" thing category_details "Category details" account account "Customer account" user sign_on "User sign on" transportation transportation "Transportation" activity_list activity_list "Activity list" activity activity "Activity" adventure_package package "Adventure package" category category "Category" lodging lodging "Lodging" --- DEFS ------------------------------------------------------------------ | No definitions required. --- DB -------------------------------------------------------------------- | | Define the list of tables to be dropped. | drop: item_details, item, product_details, product, category_details, account, sign_on transportation, activity_list, activity, package, category, lodging | | Define the list of tables to be created. | create: category, lodging, package, activity, activity_list, transportation, sign_on, account | | Define the list of tables to be initialized. | initialize: category, lodging, package, activity, activity_list, transportation, sign_on, account --- LOGIC ----------------------------------------------------------------- | No logic for this entity. --- UI -------------------------------------------------------------------- | No usage interface for this entity. --- ADJUST ---------------------------------------------------------------- | No specific adjusting for this entity.