Welcome to mirror list, hosted at ThFree Co, Russian Federation.

migration_error.rb « migration_support « click_house « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0638d487e372943a821e8555337499d28b4fda6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true

module ClickHouse
  module MigrationSupport
    class MigrationError < StandardError
      def initialize(message = nil)
        message = "\n\n#{message}\n\n" if message
        super
      end
    end

    class IllegalMigrationNameError < MigrationError
      def initialize(name = nil)
        if name
          super("Illegal name for migration file: #{name}\n\t(only lower case letters, numbers, and '_' allowed).")
        else
          super('Illegal name for migration.')
        end
      end
    end

    IrreversibleMigration = Class.new(MigrationError)

    class DuplicateMigrationVersionError < MigrationError
      def initialize(version = nil)
        if version
          super("Multiple migrations have the version number #{version}.")
        else
          super('Duplicate migration version error.')
        end
      end
    end

    class DuplicateMigrationNameError < MigrationError
      def initialize(name = nil)
        if name
          super("Multiple migrations have the name #{name}.")
        else
          super('Duplicate migration name.')
        end
      end
    end

    class UnknownMigrationVersionError < MigrationError
      def initialize(version = nil)
        if version
          super("No migration with version number #{version}.")
        else
          super('Unknown migration version.')
        end
      end
    end
  end
end