Sha256: a77b8073ba08df128935a466ea38a8e3d5d9e0a14cee51ae2f13735ffe25f8ae
Contents?: true
Size: 536 Bytes
Versions: 70
Compression:
Stored size: 536 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
70 entries across 70 versions & 1 rubygems