diff --git a/.gitignore b/.gitignore index 9a1118f6..622fe0e9 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,9 @@ bin/fern-platform # Temporary Dockerfile created by Makefile Dockerfile.fern-platform +# ide +*.idea + # Git files .git-authors diff --git a/migrations/000015_create_jira_connections_table.up.sql b/migrations/000015_create_jira_connections_table.up.sql index dbe78910..7b483e0d 100644 --- a/migrations/000015_create_jira_connections_table.up.sql +++ b/migrations/000015_create_jira_connections_table.up.sql @@ -45,6 +45,5 @@ COMMENT ON COLUMN jira_connections.is_active IS 'Whether the connection is activ COMMENT ON COLUMN jira_connections.last_tested_at IS 'Timestamp of last connection test'; COMMENT ON COLUMN jira_connections.deleted_at IS 'Soft delete timestamp'; --- Grant permissions to app user -ALTER TABLE jira_connections OWNER TO app; -GRANT ALL PRIVILEGES ON TABLE jira_connections TO app; \ No newline at end of file +-- Note: Table ownership and privileges are handled by the database connection user +-- The table will be owned by the user running the migration (configured in config.yaml) \ No newline at end of file