概要 Migrationファイルを追加するときに、必ずつけてほしいコマンドを紹介します。 after こちらのコマンドは、どのカラムの後に追記するかを指定することができます。 初期生成時は、気にする必要はありません。 create_table :posts do |t| t.string :title, null: false t.string :content, null: false t.timestamps t.datetime :discarded_at この時に作成されるカラムは下記になります。 title content created_at updated_at この状態で、新し…