Ferreteria/sql/event notes

From Woozle Writes Code
< Ferreteria‎ | sql
Revision as of 16:42, 22 May 2022 by Woozle (talk | contribs) (2 revisions imported: moving this project here)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: base table for notes entered manually (e.g. edit summary) when the event was initiated
    • No record is created if there aren't any notes to record. This allows large text capacity for occasional notes.

History

SQL

<mysql>CREATE TABLE `event_notes` (

   ID_Event     INT  NOT NULL COMMENT "event.ID of parent event",
   Notes        TEXT NOT NULL COMMENT "manually-entered notes",
 PRIMARY KEY (`ID_Event`)

) ENGINE = InnoDB;</mysql>