Sha256: 9b16aed9b2470025c237a2c54b16170e087f229463f05e6e974780f6874c89c3
Contents?: true
Size: 231 Bytes
Versions: 28
Compression:
Stored size: 231 Bytes
Contents
# typed: true class AddSchool < ActiveRecord::Migration[5.2] def change create_table :schools do |t| t.string :name end add_column :wizards, :school_id, :integer add_foreign_key :wizards, :schools end end
Version data entries
28 entries across 28 versions & 1 rubygems