Sha256: 3783a7079103070cb3eb289cead445631277d0fa7e4d0e228b14b6c586c58b22

Contents?: true

Size: 436 Bytes

Versions: 1

Compression:

Stored size: 436 Bytes

Contents

# == Schema Information
#
# Table name: alchemy_legacy_page_urls
#
#  id         :integer          not null, primary key
#  urlname    :string(255)      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'

  validates_presence_of [:urlname, :page_id]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alchemy_cms-3.0.0.rc5 app/models/alchemy/legacy_page_url.rb