Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:
# Define versions once here. When upgrading Go or Node, change
# the value here and it applies to every job automatically.
env:
GO_VERSION: '1.25'
GO_VERSION: '1.25.11'
NODE_VERSION: '20'
GOLANGCI_LINT_VERSION: 'v2.4.0'
MIGRATE_VERSION: 'v4.17.0'
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ratifydata/ratify

go 1.25.0
go 1.25.11

require (
github.com/go-chi/chi/v5 v5.3.0
Expand Down
23 changes: 23 additions & 0 deletions migrations/000002_core_schema.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
-- =============================================================================
-- Migration 000002: Reversal
-- =============================================================================
-- Drops all tables created in 000002_core_schema.up.sql.
-- Tables are dropped in reverse dependency order — most dependent first.
-- =============================================================================

DROP TABLE IF EXISTS notification_logs;
DROP TABLE IF EXISTS audit_events;
DROP TABLE IF EXISTS breaches;
DROP TABLE IF EXISTS consumer_responses;
DROP TABLE IF EXISTS proposal_changes;
DROP TABLE IF EXISTS proposals;
DROP TABLE IF EXISTS consumer_registrations;
DROP TABLE IF EXISTS contract_columns;
DROP TABLE IF EXISTS contract_versions;
DROP TABLE IF EXISTS contracts;
DROP TABLE IF EXISTS database_connections;
DROP TABLE IF EXISTS api_keys;
DROP TABLE IF EXISTS team_members;
DROP TABLE IF EXISTS users;
DROP TABLE IF EXISTS teams;
DROP TABLE IF EXISTS organizations;
Loading