We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Subtask of [STORY]: Update 'Status' to 'Follow + Note' feature #2960
N/A
A new Knex migration is added that creates the table needed for storing followers of grants.
This requires the following new tables to be created:
grant_followers
id
grant_id
grants.grant_id
user_id
users.id
created_at
now()
idx_grant_id_user_id
(grant_id, user_id)
The text was updated successfully, but these errors were encountered:
This issue is small enough that it should be merged with #3203
Sorry, something went wrong.
No branches or pull requests
Subtask of [STORY]: Update 'Status' to 'Follow + Note' feature #2960
Blocked by
N/A
Blocks
Definition of Done
A new Knex migration is added that creates the table needed for storing followers of grants.
Implementation Details
This requires the following new tables to be created:
grant_followers
id
: serial, not null, primary keygrant_id
: text, not null, foreign key togrants.grant_id
user_id
: int, not null, foreign key tousers.id
created_at
: timestamp with time zone, not null, defaultnow()
idx_grant_id_user_id
on columns(grant_id, user_id)
The text was updated successfully, but these errors were encountered: