2019-11-19から1日間の記事一覧

【Rails migration メモ】既存列の最初にadd_columnしたい

こういうテーブルがあるときに create_table :user do |t| t.string :uuid t.string :title t.timestamps end あ!description列が欲しい...! ってなったら以下の通り差し込む( add_column )することができます。 add_column :user, :description, first: t…