Drop email on instructeurs

This commit is contained in:
Paul Chavard 2019-11-13 15:38:44 +01:00
parent 2874b31c44
commit 556ec351f3
4 changed files with 8 additions and 5 deletions

View file

@ -14,7 +14,7 @@ module Instructeurs
end
def add_instructeur
@instructeur = Instructeur.find_by(email: instructeur_email) ||
@instructeur = Instructeur.by_email(instructeur_email) ||
create_instructeur(instructeur_email)
if groupe_instructeur.instructeurs.include?(@instructeur)

View file

@ -47,7 +47,7 @@ module NewAdministrateur
end
def add_instructeur
@instructeur = Instructeur.find_by(email: instructeur_email) ||
@instructeur = Instructeur.by_email(instructeur_email) ||
create_instructeur(instructeur_email)
if groupe_instructeur.instructeurs.include?(@instructeur)

View file

@ -0,0 +1,5 @@
class InstructeursRemoveEmail < ActiveRecord::Migration[5.2]
def change
remove_column :instructeurs, :email
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2019_10_24_150452) do
ActiveRecord::Schema.define(version: 2019_11_13_142816) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -414,12 +414,10 @@ ActiveRecord::Schema.define(version: 2019_10_24_150452) do
end
create_table "instructeurs", id: :serial, force: :cascade do |t|
t.string "email", default: "", null: false
t.datetime "created_at"
t.datetime "updated_at"
t.text "encrypted_login_token"
t.datetime "login_token_created_at"
t.index ["email"], name: "index_instructeurs_on_email"
end
create_table "invites", id: :serial, force: :cascade do |t|