-- migrate:up
ALTER TABLE warehouse
ADD COLUMN user_level int DEFAULT '0'

-- migrate:down
ALTER TABLE warehouse
DROP COLUMN user_level;
