Remove calendar pass

This commit is contained in:
Dennis Eichhorn 2017-10-14 21:32:29 +02:00
parent 829198a696
commit fa98ff1575
2 changed files with 0 additions and 29 deletions

View File

@ -44,7 +44,6 @@ class Installer extends InstallerAbstract
'CREATE TABLE if NOT EXISTS `' . $dbPool->get('core')->prefix . 'calendar` ( 'CREATE TABLE if NOT EXISTS `' . $dbPool->get('core')->prefix . 'calendar` (
`calendar_id` int(11) NOT NULL AUTO_INCREMENT, `calendar_id` int(11) NOT NULL AUTO_INCREMENT,
`calendar_name` varchar(255) NOT NULL, `calendar_name` varchar(255) NOT NULL,
`calendar_password` varchar(255) DEFAULT NULL,
`calendar_description` varchar(255) NOT NULL, `calendar_description` varchar(255) NOT NULL,
`calendar_created_by` int(11) NOT NULL, `calendar_created_by` int(11) NOT NULL,
`calendar_created_at` datetime NOT NULL, `calendar_created_at` datetime NOT NULL,

View File

@ -76,14 +76,6 @@ class Calendar
*/ */
private $date = null; private $date = null;
/**
* Password
*
* @var string
* @since 1.0.0
*/
private $password = null;
/** /**
* Events. * Events.
* *
@ -133,26 +125,6 @@ class Calendar
$this->name = $name; $this->name = $name;
} }
/**
* @return string
*
* @since 1.0.0
*/
public function getPassword()
{
return $this->password;
}
/**
* @param string $password Calendar password/title
*
* @since 1.0.0
*/
public function setPassword($password)
{
$this->password = $password;
}
/** /**
* @return string * @return string
* *