From 57f015043a70880bb8bc55e27ec8458514f1679a Mon Sep 17 00:00:00 2001 From: Filippos Vasilakis Date: Tue, 20 Feb 2018 18:22:03 +0100 Subject: [PATCH] Usually the table name is plural --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78ae950a..bdc8e336 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Note that closure_tree only supports ActiveRecord 4.2 and later, and has test co ```ruby class AddParentIdToTag < ActiveRecord::Migration def change - add_column :tag, :parent_id, :integer + add_column :tags, :parent_id, :integer end end ```