Merge pull request #17381 from eileenmcnaughton/dao
[civicrm-core.git] / xml / templates / drop.tpl
CommitLineData
6a488035 1-- +--------------------------------------------------------------------+
6b7eb9df 2-- | Copyright CiviCRM LLC. All rights reserved. |
6a488035 3-- | |
6b7eb9df
TO
4-- | This work is published under the GNU AGPLv3 license with some |
5-- | permitted exceptions and without any warranty. For full license |
6-- | and copyright information, see https://civicrm.org/licensing |
6a488035 7-- +--------------------------------------------------------------------+
d5864876
ARW
8--
9-- Generated from {$smarty.template}
10-- {$generated}
11--
6a488035
TO
12-- /*******************************************************
13-- *
14-- * Clean up the exisiting tables
15-- *
16-- *******************************************************/
17
18SET FOREIGN_KEY_CHECKS=0;
19
20{foreach from=$dropOrder item=name}
21DROP TABLE IF EXISTS `{$name}`;
22{/foreach}
23
24SET FOREIGN_KEY_CHECKS=1;