Ferreteria/sql/event notes: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
mNo edit summary
m (2 revisions imported: moving this project here)
 
(No difference)

Latest revision as of 16:42, 22 May 2022

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>