Skip to content

Releases: dreamvids/DreamVids

V2.2.1

16 Sep 18:02
Compare
Choose a tag to compare

Update parter table

ALTER TABLE  `partners` ADD  `contact_email` VARCHAR( 255 ) NULL AFTER  `url` ;

Intern notifications

16 Sep 09:02
Compare
Choose a tag to compare

TODO LIST

  • Update database
  • Edit pushbullet key

Update database :

One table to add :

CREATE TABLE IF NOT EXISTS `staff_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `viewers` varchar(50) NOT NULL DEFAULT 'team_or_more',
  `type` varchar(50) NOT NULL,
  `id_one` varchar(20) DEFAULT NULL,
  `id_two` varchar(20) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `level` varchar(20) NOT NULL,
  `timestamp` bigint(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8;

Edit pushbullet key

The key to change is in app/config/pushbullet_key.php
Replace it with the one you find in the account settings

V2.1

10 Sep 16:22
Compare
Choose a tag to compare
Merge branch 'hotfix/disk-space'