mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
7 lines
310 B
Ruby
7 lines
310 B
Ruby
class AddCredentialsToDistrict < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :districts, :username, :string, null: true, default: nil
|
|
add_column :districts, :password, :string, null: true, default: nil
|
|
add_column :districts, :login_required, :boolean, null: false, default: true
|
|
end
|
|
end
|