class CreateCards < ActiveRecord::Migration[7.0] def change create_table :cards do |t| t.string :number t.integer :expiration_month t.integer :expiration_year t.integer :expiration_day t.integer :security_code t.references :user_account, null: false, foreign_key: true t.timestamps end end end