search for: 7122524a2691dfbab938b8bb700d80dc

Displaying 1 result from an estimated 1 matches for "7122524a2691dfbab938b8bb700d80dc".

2006 Mar 31
2
A.R. Associations problem
Hello, I''m learning A.R Associations by creating a simple forum that consists of 3 tables: ahuthors, topics and posts. This is the schema: class AddAuthorAndTopicAndPostTables < ActiveRecord::Migration def self.up create_table :authors do |t| t.column :username, :string t.column :email, :string t.column :created_on, :datetime end create_table