Sample.Migration.php 763 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /* Example Column Options:
  3. $column = array(
  4. 'type' => 'primary|string|integer|boolean|decimal|datetime',
  5. 'length' => NULL,
  6. 'index' => FALSE,
  7. 'null' => TRUE,
  8. 'default' => NULL,
  9. 'unique' => FALSE,
  10. 'precision' => 0, // (optional, default 0) The precision for a decimal (exact numeric) column. (Applies only if a decimal column is used.)
  11. 'scale' => 0, // (optional, default 0) The scale for a decimal (exact numeric) column. (Applies only if a decimal column is used.)
  12. );
  13. */
  14. $config = array(
  15. 'test_table' => array(
  16. 'id' => array('type' => 'primary'),
  17. 'title' => array('type' => 'string', 'length' => 100),
  18. 'text' => array('type' => 'string'),
  19. 'created' => array('type' => 'datetime'),
  20. 'modified' => array('type' => 'datetime'),
  21. ),
  22. );