~porten-deactivatedaccount/eventum/devel

« back to all changes in this revision

Viewing changes to eventum/setup/schema.sql

  • Committer: balsdorf
  • Date: 2008-04-14 16:53:06 UTC
  • Revision ID: vcs-imports@canonical.com-20080414165306-3n5so57poap3bo9p
Fixed problem where notes with attachments showed as "blocked" even though they were not.
Display attachment icon on note listing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
281
281
  not_usr_id int(11) unsigned NOT NULL default 0,
282
282
  not_title varchar(255) NOT NULL,
283
283
  not_note longtext NOT NULL,
284
 
  not_blocked_message longtext NULL,
 
284
  not_full_message longtext NULL,
285
285
  not_parent_id int(11) unsigned NULL,
286
286
  not_unknown_user varchar(255) NULL DEFAULT NULL,
287
287
  not_has_attachment tinyint(1) NOT NULL default 0,
288
288
  not_message_id varchar(255) NULL,
289
289
  not_removed tinyint(1) NOT NULL DEFAULT 0,
 
290
  not_is_blocked tinyint(1) NOT NULL DEFAULT 0,
290
291
  PRIMARY KEY  (not_id),
291
292
  KEY not_bug_id (not_iss_id,not_usr_id),
292
293
  KEY not_message_id (not_message_id),