From 7aaa671bbf4fc419b73b2200a8b5a77d3d5fb10f Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Thu, 23 Jan 2025 20:59:31 +0000 Subject: [PATCH] Add copyright notice --- db/migrate/20250122202836_enable_pg_stat_statements.rb | 2 ++ db/migrate/20250122204932_create_pghero_stats_tables.rb | 2 ++ db/schema.rb | 2 ++ 3 files changed, 6 insertions(+) diff --git a/db/migrate/20250122202836_enable_pg_stat_statements.rb b/db/migrate/20250122202836_enable_pg_stat_statements.rb index 0651eec..33dbf1a 100644 --- a/db/migrate/20250122202836_enable_pg_stat_statements.rb +++ b/db/migrate/20250122202836_enable_pg_stat_statements.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + class EnablePgStatStatements < ActiveRecord::Migration[8.0] def change enable_extension 'pg_stat_statements' diff --git a/db/migrate/20250122204932_create_pghero_stats_tables.rb b/db/migrate/20250122204932_create_pghero_stats_tables.rb index e3a541c..d813a38 100644 --- a/db/migrate/20250122204932_create_pghero_stats_tables.rb +++ b/db/migrate/20250122204932_create_pghero_stats_tables.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + class CreatePgheroStatsTables < ActiveRecord::Migration[8.0] def up execute <<~SQL diff --git a/db/schema.rb b/db/schema.rb index 03f31cb..4de4cf6 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # This file is auto-generated from the current state of the database. Instead # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition.