Here's some helpful HBase shell commands for you. Get help on format for creating a table in the shell.
help 'create' create 'comments', {NAME=>'user_info'}, {NAME=>'comment_data'}
Note that column families need to be explicit, but actual columns themselves have no requirements and can be added post-create just by doing a Put. 1 File per Column Family, all columns for a row in the family are adjacent to each other in the file. In this case, I made a 'user_info' family that you could put 'user_id' and 'status' columns into. Ditto for 'comment_data'.
If you need to alter the table (for example, you might only create one column family on the first try), you need to disable the table then alter it
disable 'tableName' help 'alter' enable 'tableName' # when done altering
Note that you also need to disable a table to delete it.