blob: 8f3c6d0ee3371d49a5c00f431342887afc6f7ee8 (
plain) (
blame)
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
|
# frozen_string_literal: true
require "active_record/scoping/default"
require "active_record/scoping/named"
module ActiveRecord
# This class is used to create a table that keeps track of values and keys such
# as which environment migrations were run in.
class InternalMetadata < ActiveRecord::Base # :nodoc:
class << self
def _internal?
true
end
def primary_key
"key"
end
def table_name
"#{table_name_prefix}#{internal_metadata_table_name}#{table_name_suffix}"
end
def []=(key, value)
find_or_initialize_by(key: key).update!(value: value)
end
def [](key)
where(key: key).pluck(:value).first
end
# Creates an internal metadata table with columns +key+ and +value+
def create_table
unless table_exists?
key_options = connection.internal_string_options_for_primary_key
connection.create_table(table_name, id: false) do |t|
t.string :key, key_options
t.string :value
t.timestamps
end
end
end
def drop_table
connection.drop_table table_name, if_exists: true
end
end
end
end
|