A Rails plugin that allows you to keep your schema organized as your app evolves by letting you insert a new column after another one. add_column :posts, :published, :boolean, :default => 0, :null => ...
Sometimes wee need to add a comment to a column for understanding purpose means to easily identify what is the use of that particular column. We can add comment to a column by two ways- at the time of ...