Add more classes in dummy app to test association moderation

master
Guillaume DOTT 2013-11-28 09:26:18 +01:00
parent 7612d2f45e
commit 9c24f2fc1b
4 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,3 @@
class Category < ActiveRecord::Base
has_one :page
end

View File

@ -0,0 +1,3 @@
class Link < ActiveRecord::Base
belongs_to :page
end

View File

@ -1,2 +1,4 @@
class Page < ActiveRecord::Base
has_many :links
belongs_to :category
end

View File

@ -1,10 +1,23 @@
ActiveRecord::Schema.define do
create_table :categories, :force => true do |t|
t.string :name
t.timestamps
end
create_table :pages, :force => true do |t|
t.integer :category_id
t.string :name
t.text :content
t.timestamps
end
create_table :links, :force => true do |t|
t.integer :page_id
t.string :name
t.string :url
t.timestamps
end
create_table :moderations, :force => true do |t|
t.integer :moderatable_id
t.string :moderatable_type