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