Add creation timestamp to links#27
Closed
google-labs-jules[bot] wants to merge 4 commits into
Closed
Conversation
This commit introduces a `created_at` timestamp to the `Link` model and the corresponding database table. When a new link is created, the current timestamp is now stored alongside it. A cleanup job has also been added to the `run_periodic_cleanup` function. This job will find any existing links in the database that do not have a `created_at` timestamp and set it to the current time. This ensures that all links will have a creation timestamp. A database migration has been added to create the new `created_at` column in the `LINKS` table.
This commit introduces a `created_at` timestamp to the `Link` model and the corresponding database table. When a new link is created, the current timestamp is now stored alongside it. A cleanup job has also been added to the `run_periodic_cleanup` function. This job will find any existing links in the database that do not have a `created_at` timestamp and set it to the current time. This ensures that all links will have a creation timestamp. A database migration has been added to create the new `created_at` column in the `LINKS` table. To fix the build error in the CI environment, a script `db/prepare_test_db.sh` has been added. This script installs `sqlx-cli` and runs the database migrations to prepare the database for compile-time checks. This script should be run in the CI environment before building the project.
This commit introduces a `created_at` timestamp to the `Link` model and the corresponding database table. When a new link is created, the current timestamp is now stored alongside it. A cleanup job has also been added to the `run_periodic_cleanup` function. This job will find any existing links in the database that do not have a `created_at` timestamp and set it to the current time. This ensures that all links will have a creation timestamp. A database migration has been added to create the new `created_at` column in the `LINKS` table. To fix the build error in the CI environment, a script `db/prepare_test_db.sh` has been added. This script installs `sqlx-cli` and runs the database migrations to prepare the database for compile-time checks. This script should be run in the CI environment before building the project. This commit also makes the `prepare_test_db.sh` script more verbose to help with debugging in the CI environment.
13hannes11
marked this pull request as ready for review
October 2, 2025 11:01
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change adds a
created_attimestamp to links when they are created and adds a cleanup job to set the timestamp for existing links.