20250308053931_create_images.rb 236 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 class CreateImages < ActiveRecord::Migration[8.0] def change create_table :images do |t| t.string :title t.integer :status t.references :user, null: false, foreign_key: true t.timestamps end end end