fixing filename in top comment of up migration file
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_00_00_000000_create_audit_log_table.sql
|
||||
-- internal/db/migrations/2026_00_00_000000_create_audit_log_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "audit_log" ------------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "audit_log" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000000_create_users_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000000_create_users_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "users" ----------------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "users" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000010_create_projects_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000010_create_projects_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "projects" -------------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "projects"(
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000011_create_project_user_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000011_create_project_user_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "project_user" ---------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "project_user" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000011_create_project_labels_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000011_create_project_labels_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "project_labels" -------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "project_labels" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000013_create_project_links_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000013_create_project_links_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "project_links" --------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "project_links" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000014_create_project_attachments_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000014_create_project_attachments_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "project_attachments" --------------------------
|
||||
CREATE TABLE IF NOT EXISTS "project_attachments" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000015_create_project_favorites_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000015_create_project_favorites_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "project_favorites" ----------------------------
|
||||
CREATE TABLE IF NOT EXISTS "project_favorites" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_00_000007_create_project_dependencies_table.sql
|
||||
-- internal/db/migrations/2026_01_00_000007_create_project_dependencies_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "project_dependencies" -----------------------------
|
||||
CREATE TABLE IF NOT EXISTS "project_dependencies" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000020_create_issues_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000020_create_issues_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issues" ---------------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issues" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000021_create_issue_labels_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000021_create_issue_labels_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issue_labels" ---------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issue_labels" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000022_create_issue_links_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000022_create_issue_links_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issue_links" ----------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issue_links" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000023_create_issue_attachments_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000023_create_issue_attachments_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issue_attachments" ----------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issue_attachments" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000005_create_issue_blockers_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000005_create_issue_blockers_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issue_blockers" -------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issue_blockers" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000024_create_issue_comments_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000024_create_issue_comments_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issue_comments" -------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issue_comments" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000106_create_issue_comment_links_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000106_create_issue_comment_links_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issue_comment_links" --------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issue_comment_links" (
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_01_000107_create_issue_comment_attachments_table.sql
|
||||
-- internal/db/migrations/2026_01_01_000107_create_issue_comment_attachments_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "issue_comment_attachments" --------------------------
|
||||
CREATE TABLE IF NOT EXISTS "issue_comment_attachments" (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
-- internal/db/migrations/2026_01_02_000001_create_webhook_receipts_table.sql
|
||||
-- internal/db/migrations/2026_01_02_000001_create_webhook_receipts_table.sql.up.sql
|
||||
|
||||
-- CREATE TABLE "webhook_receipts" -------------------------------
|
||||
CREATE TABLE IF NOT EXISTS "webhook_receipts" (
|
||||
|
||||
Reference in New Issue
Block a user