Skip to content
Snippets Groups Projects
Commit 9ba3b212 authored by Jeremy M Fee's avatar Jeremy M Fee Committed by Claycomb, Abram Earl
Browse files

Remove is_active column from user for now

parent 8b00456d
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,6 @@ class User(db.Model, flask_login.UserMixin):
id = db.Column(db.Integer, primary_key=True)
openid = db.Column(db.Text, unique=True, nullable=False)
email = db.Column(db.Text, unique=True, nullable=False)
is_active = db.Column(db.Boolean, default=False)
groups = db.Column(db.Text)
def get_id(self) -> str:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment