Guest User

Untitled

a guest
Apr 27th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. abstract class BasePermGroup extends sfDoctrineRecord
  2. {
  3.  
  4. public function setTableDefinition()
  5. {
  6. $this->setTableName('perm_group');
  7. $this->hasColumn('group_id', 'integer', 4, array (
  8. 'primary' => true,
  9. 'sequence' => 'perm_group_group_id',
  10. 'notnull' => true,
  11. ));
  12. }
  13.  
  14.  
  15. }
Add Comment
Please, Sign In to add comment