Guest User

Untitled

a guest
Oct 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php
  2. /**
  3. * Setup-0.1.0.php
  4. *
  5. * Tables for CMS themes
  6. *
  7. * @package easyPage CmsTheme
  8. * @author Christoffer Bubach
  9. * @class Core_Plugin_Setup
  10. */
  11.  
  12. $db = wmvc::app()->getDb();
  13. $tables = array(
  14. 'theme' => array(
  15. 'id' => array('type' => 'primary'),
  16. 'parent_id' => array('type' => 'integer', 'null' => true, 'index' => true),
  17. 'name' => array('type' => 'string', 'length' => 100, 'null' => false),
  18. 'module' => array('type' => 'string', 'length' => 100, 'null' => true),
  19. 'active' => array('type' => 'boolean', 'default' => 1, 'null' => false),
  20. 'type' => array(
  21. 'type' => 'integer',
  22. 'null' => false,
  23. 'index' => true,
  24. ),
  25. 'preview' => array('type' => 'string', 'length' => 100, 'null' => true),
  26. 'content' => array('type' => 'string', 'null' => true),
  27. ),
  28. );
  29. $db->schema()->createTable($tables);
Add Comment
Please, Sign In to add comment