diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-06-27 15:14:04 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-06-27 15:14:04 -0400 |
| commit | 6c772de184505ae339a970631c8e98f3e3b6e5f0 (patch) | |
| tree | 47aaafd9ef996041c7857db72ad1d274d7b44c42 /app/Model/User.php | |
| parent | e6e286be8315345bed575712b338629e4ba76bcb (diff) | |
Remove column default_project_id for users because it's useless now
Diffstat (limited to 'app/Model/User.php')
| -rw-r--r-- | app/Model/User.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/Model/User.php b/app/Model/User.php index 63b49367..4c32942c 100644 --- a/app/Model/User.php +++ b/app/Model/User.php @@ -57,7 +57,6 @@ class User extends Base 'name', 'email', 'is_admin', - 'default_project_id', 'is_ldap_user', 'notifications_enabled', 'google_id', @@ -377,7 +376,6 @@ class User extends Base new Validators\MaxLength('username', t('The maximum length is %d characters', 50), 50), new Validators\Unique('username', t('The username must be unique'), $this->db->getConnection(), self::TABLE, 'id'), new Validators\Email('email', t('Email address invalid')), - new Validators\Integer('default_project_id', t('This value must be an integer')), new Validators\Integer('is_admin', t('This value must be an integer')), ); } |
