Files
afup/sql/20160105_alter_compta.sql
T
Jacques Bodin-Hullin fb9d53469d [-TASK] Remove useless SQL 😓
Not required here.
2016-01-06 00:15:06 +01:00

10 lines
294 B
SQL

-- STORY
-- As the account manager
-- I want to add a comment on a line in journal
-- So that I can have more details about the line.
-- Add `comment` column in compta to keep comments on items :')
ALTER TABLE `compta`
ADD COLUMN `comment` VARCHAR(255) DEFAULT NULL AFTER `description`;