aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/public_body_heading.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/public_body_heading.rb')
-rw-r--r--app/models/public_body_heading.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/models/public_body_heading.rb b/app/models/public_body_heading.rb
new file mode 100644
index 000000000..e9c854a7d
--- /dev/null
+++ b/app/models/public_body_heading.rb
@@ -0,0 +1,12 @@
+# == Schema Information
+#
+# Table name: public_body_headings
+#
+# id :integer not null, primary key
+# locale :string
+# name :text not null
+#
+
+class PublicBodyHeading < ActiveRecord::Base
+ has_and_belongs_to_many :public_body_categories
+end