Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# This migration comes from openstax_accounts (originally 19)
class AddIsAdministratorToOpenStaxAccountsAccounts < ActiveRecord::Migration[5.2]
def change
add_column :openstax_accounts_accounts, :is_administrator, :boolean
end
end
1 change: 1 addition & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@
t.boolean "is_kip"
t.integer "school_location", default: 0, null: false
t.boolean "grant_tutor_access"
t.boolean "is_administrator"
t.index ["access_token"], name: "index_openstax_accounts_accounts_on_access_token", unique: true
t.index ["faculty_status"], name: "index_openstax_accounts_accounts_on_faculty_status"
t.index ["first_name"], name: "index_openstax_accounts_accounts_on_first_name"
Expand Down