I didn't notice

.
I wasn't trying to be snide.
There are reasons why relational theory has developed several normalization rules of data structures.
Your bit vector column violates the first normalization rule, called "First Normal Form", which states, in effect, that all column values should be atomic.
A more formal definition reads, "The domains of attributes must include only atomic (simple, indivisible) values and that the value of any attribute in a tuple must be a single value from the domain of that attribute."
Your bit vector column contains multiple values so it is not atomic, and thus violates this first rule of database normalization.
This may or may not cause you problems down the line. It will be a bit difficult to select rows based on values of this column, and updating them can be a bit tricky, requiring potentially awkward bit masking/shifting, etc. - not something that the SQL language is necessarily all that good at. Try writing a report/query that lists the privileges a user is assigned.
A more normalized solution would have a related table with one row for each privilege the user is assigned, i.e. (User, Privilege).
Jeff Mason
Custom Apps, Inc.
www.custom-apps.com