0
0

【Rails】カラムにNOT NULL制約を追加する方法

Posted at

カラムにNOT NULL制約を追加するにはマイグレーションファイルに以下のように記述します。


def change
  change_column_null :テーブル名, :カラム名, false
end

usersテーブルのis_sampleカラムにNOT NULL制約を追加する場合は以下のようになります。


def change
  change_column_null :users, :is_sample, false
end

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0