Files
afup/sql/20160105_alter_compta.sql
2016-05-23 17:44:43 +02: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`;