Reassigning is an effect of a controller action, not something that
should be stored in the database like this.
# issue_id :integer not null
# commenter_user_id :integer not null
# body :text not null
-# reassign :boolean
# created_at :datetime not null
# updated_at :datetime not null
#
t.integer :issue_id, :null => false
t.integer :commenter_user_id, :null => false
t.text :body, :null => false
- t.boolean :reassign
t.timestamps :null => false
end
issue_id integer NOT NULL,
commenter_user_id integer NOT NULL,
body text NOT NULL,
- reassign boolean,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);