ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
322 B

  1. class AddVideoMsToPosts < ActiveRecord::Migration[8.0]
  2. def change
  3. add_column :posts, :video_ms, :integer
  4. add_index :posts, [:video_ms, :id], name: 'idx_posts_video_ms_id'
  5. add_check_constraint :posts, 'video_ms IS NULL OR video_ms > 0',
  6. name: 'chk_posts_video_ms_positive'
  7. end
  8. end