diff options
| author | Factiven <[email protected]> | 2023-09-13 00:45:53 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-13 00:45:53 +0700 |
| commit | 7327a69b55a20b99b14ee0803d6cf5f8b88c45ef (patch) | |
| tree | cbcca777593a8cc4b0282e7d85a6fc51ba517e25 /prisma/migrations | |
| parent | Update issue templates (diff) | |
| download | moopa-7327a69b55a20b99b14ee0803d6cf5f8b88c45ef.tar.xz moopa-7327a69b55a20b99b14ee0803d6cf5f8b88c45ef.zip | |
Update v4 - Merge pre-push to main (#71)
* Create build-test.yml
* initial v4 commit
* update: github workflow
* update: push on branch
* Update .github/ISSUE_TEMPLATE/bug_report.md
* configuring next.config.js file
Diffstat (limited to 'prisma/migrations')
| -rw-r--r-- | prisma/migrations/20230817034249_added_next_episode_for_recent_watch/migration.sql | 3 | ||||
| -rw-r--r-- | prisma/migrations/20230821135544_add_dub_to_watchlist/migration.sql | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/prisma/migrations/20230817034249_added_next_episode_for_recent_watch/migration.sql b/prisma/migrations/20230817034249_added_next_episode_for_recent_watch/migration.sql new file mode 100644 index 0000000..45b596a --- /dev/null +++ b/prisma/migrations/20230817034249_added_next_episode_for_recent_watch/migration.sql @@ -0,0 +1,3 @@ +-- AlterTable +ALTER TABLE "WatchListEpisode" ADD COLUMN "nextId" TEXT, +ADD COLUMN "nextNumber" INTEGER; diff --git a/prisma/migrations/20230821135544_add_dub_to_watchlist/migration.sql b/prisma/migrations/20230821135544_add_dub_to_watchlist/migration.sql new file mode 100644 index 0000000..72e2727 --- /dev/null +++ b/prisma/migrations/20230821135544_add_dub_to_watchlist/migration.sql @@ -0,0 +1,2 @@ +-- AlterTable +ALTER TABLE "WatchListEpisode" ADD COLUMN "dub" BOOLEAN; |