-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQL-DB #32
SQL-DB #32
Conversation
|
||
COMMENT ON COLUMN qiita.command.command_id IS 'Unique identifier for function'; | ||
|
||
COMMENT ON COLUMN qiita.command.command IS 'what command to call to run this function'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Capitalize What
description varchar NOT NULL, | ||
analysis_status_id bigint NOT NULL, | ||
biom_table_filepath varchar NOT NULL, | ||
pmid integer , |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In study_pmid
table, pmid is a varchar
Now, a couple general comments:
|
+1 |
Where are we on this? Major questions right now: Do we want to add the logging tables now? |
not sure on points 2 and 3, but if we do not do logging now then it is a On Fri, Apr 11, 2014 at 11:22 AM, Joshua Shorenstein <
|
Right, so then we need to figure out what logging tables we need and how to put them together. Can we get that done before Tuesday? |
at the minimum, something like: create table log_details ( ...with the appropriate indices of course. The reason we may want a null On Fri, Apr 11, 2014 at 11:29 AM, Joshua Shorenstein <
|
user_id for system calls can be explicitly May also be a good idea to log what the user was doing when it screwd up, i.e. a |
Another column that we discussed was logging a dev error vs a user error vs a run error. This might be able to wrap into the severity info. |
re: user_id, depends if we want granularity for what system threw the error On Fri, Apr 11, 2014 at 11:38 AM, Joshua Shorenstein <
|
whats the difference between a dev error and a run error? On Fri, Apr 11, 2014 at 11:46 AM, Joshua Shorenstein <
|
I have no idea, it's in my notes as that. |
Added logging table and two columns for password reset. This should be good to go now? HTML also reflects the changes. |
Do we want users to verify email before allowing login? That requires two more columns on the qiita_user table if so. |
Not really, we can use the user_level_id to define that is not verified. Is there something missing from this PR? |
Not any more as far as I can tell. |
I think this is good to merge and get us moving. we can always change On Mon, Apr 14, 2014 at 2:31 PM, Joshua Shorenstein <
|
exciting! On Tue, Apr 15, 2014 at 6:25 AM, Antonio Gonzalez
|
HTML view of the schema at https://dl.dropboxusercontent.com/u/39899821/qiita-db.html