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

      t.string :name, null: false
      t.boolean :primary, null: false, default: false

      t.timestamps
    end
  end
end
