6 lines
112 B
MySQL
6 lines
112 B
MySQL
|
--
|
||
|
-- Add a new column to the inventory table to store tags.
|
||
|
--
|
||
|
|
||
|
ALTER TABLE inventory ADD tag blob DEFAULT '';
|