blob: ee4c71f3041d9b2f1497caa443f8b6553aeab69e (
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
50
51
52
53
54
55
56
57
58
59
|
require 'active_record/scoping/default'
require 'active_record/scoping/named'
module ActiveRecord
# This class is used to create a table that keeps track of which migrations
# have been applied to a given database. When a migration is run, its schema
# number is inserted in to the `SchemaMigration.table_name` so it doesn't need
# to be executed the next time.
class SchemaMigration < ActiveRecord::Base # :nodoc:
class << self
def primary_key
"version"
end
def table_name
"#{table_name_prefix}#{ActiveRecord::Base.schema_migrations_table_name}#{table_name_suffix}"
end
def index_name
"#{table_name_prefix}unique_#{ActiveRecord::Base.schema_migrations_table_name}#{table_name_suffix}"
end
def table_exists?
ActiveSupport::Deprecation.silence { connection.table_exists?(table_name) }
end
def create_table(limit=nil)
unless table_exists?
version_options = {null: false}
version_options[:limit] = limit if limit
connection.create_table(table_name, id: false) do |t|
t.column :version, :string, version_options
t.index :version, unique: true, name: index_name
end
end
end
def drop_table
if table_exists?
connection.remove_index table_name, name: index_name
connection.drop_table(table_name)
end
end
def normalize_migration_number(number)
"%.3d" % number.to_i
end
def normalized_versions
pluck(:version).map { |v| normalize_migration_number v }
end
end
def version
super.to_i
end
end
end
|