Skip to content
代码片段 群组 项目
提交 9137b716 编辑于 作者: Thong Kuah's avatar Thong Kuah
浏览文件

Prevent future timestamps in migration files

上级 d02bf43a
No related branches found
No related tags found
无相关合并请求
......@@ -340,6 +340,7 @@ db:check-schema:
- .rails:rules:ee-mr-and-default-branch-only
script:
- source scripts/schema_changed.sh
- scripts/validate_migration_timestamps
db:check-migrations:
extends:
......
#!/usr/bin/env ruby
# frozen_string_literal: true
require 'time'
MIGRATION_DIRS = %w[db/migrate db/post_migrate].freeze
VERSION_DIGITS = 14
MIGRATION_TIMESTAMP_REGEX = /\A(?<version>\d{#{VERSION_DIGITS}})_/.freeze
maximum_timestamp = Time.now.utc.strftime('%Y%m%d%H%M%S').to_i
MIGRATION_DIRS.each do |migration_dir|
Dir[File.join(migration_dir, '*.rb')].each do |filename|
file_basename = File.basename(filename)
version_match = MIGRATION_TIMESTAMP_REGEX.match(file_basename)
raise "#{filename} has an invalid migration version" if version_match.nil?
migration_timestamp = version_match['version'].to_i
raise "#{filename} has a future timestamp" if migration_timestamp > maximum_timestamp
end
end
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册