Database table update in OpenMeetings plugin to avoid strange datetime formats or short welcome messages - refs BT#7046 refs #5491

1.9.x
Yannick Warnier 12 years ago
parent 3c1560656e
commit 8b9b9fe849
  1. 6
      plugin/openmeetings/lib/openmeetings_plugin.class.php

@ -32,10 +32,10 @@ class OpenMeetingsPlugin extends Plugin
moderator_pw VARCHAR(255) NOT NULL DEFAULT '', moderator_pw VARCHAR(255) NOT NULL DEFAULT '',
record INT NOT NULL DEFAULT 0, record INT NOT NULL DEFAULT 0,
status INT NOT NULL DEFAULT 0, status INT NOT NULL DEFAULT 0,
created_at VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL,
closed_at VARCHAR(255) NOT NULL, closed_at DATETIME,
calendar_id INT DEFAULT 0, calendar_id INT DEFAULT 0,
welcome_msg VARCHAR(255) NOT NULL DEFAULT '')"; welcome_msg TEXT NOT NULL DEFAULT '')";
Database::query($sql); Database::query($sql);
//Installing course settings //Installing course settings

Loading…
Cancel
Save