7
テーブル定義書:tag_name_sanitisation_rules
みてるぞ edited this page 2026-03-09 16:40:00 +09:00

tag_name_sanitisation_rules: タグ名禁則処理パターン

物理名 論理名 サイズ NULL 許容 デフォルト 備考
priority 優先度 INT  
source_pattern 禁止パターン VARCHAR 255 正規表現
replacement 変換後文字列 VARCHAR 255 後方参照対応

制約

  • 主キー:
    • priority
  • 一意制約:
    • source_pattern

備考

TagName#before_validation に置換処理を入れる. TagNameRule.apply! に TagName に対する置換処理を入れる.

現時点では,固定で以下の形式:

priority source_pattern replacement created_at updated_at discarded_at
10 \* _ Time.current Time.current NULL
20 \? _ Time.current Time.current NULL
25 \/ _ Time.current Time.current NULL
30 _+ _ Time.current Time.current NULL
40 _$ Time.current Time.current NULL
45 ^(.+?\:)?_ \1 Time.current Time.current NULL
50 ^(.+?\:)?$ \1null Time.current Time.current NULL