Sha256: 69a173b689c14bcdbbae6c1fddda1657226a8fa3cbab5424a9253ad8729cebf3
Contents?: true
Size: 534 Bytes
Versions: 51
Compression:
Stored size: 534 Bytes
Contents
# frozen_string_literal: true # == Schema Information # # Table name: alchemy_legacy_page_urls # # id :integer not null, primary key # urlname :string not null # page_id :integer not null # created_at :datetime not null # updated_at :datetime not null # class Alchemy::LegacyPageUrl < ActiveRecord::Base belongs_to :page, class_name: "Alchemy::Page", required: true validates :urlname, presence: true, format: {with: /\A[:.\w\-+_\/?&%;=#]*\z/} end
Version data entries
51 entries across 51 versions & 1 rubygems