class CreateSchoolBrandings < ActiveRecord::Migration[6.0]
  def change
    create_table :school_brandings do |t|
      t.references :school, type: :integer, null: false,
        foreign_key: { to_table: :Schools, primary_key: :SchoolID }

      t.integer :color, null: false, default: 0

      t.timestamps
    end
  end
end
