00030-house_audit.php

  1. <?php
  2.  
  3. class House_Audit_Migration_00030 extends Migration {
  4. public function up() {
  5. $this->create_table('house_audit')
  6. ->timestamps()
  7. ->column('HOUSE_KEY', 'string', array('null' => FALSE, 'limit' => 20))
  8. ->column('notes', 'text', array('null' => FALSE))
  9. ->index('HOUSE_KEY');
  10. }
  11.  
  12. public function down() {
  13. $this->drop_table('house_audit');
  14. }
  15. }
  16.