Are you hosting it somewhere else ?
What I basically want is the stacktrace. It doesn't matter when one/two or everyone else gets the error. It shouldn't error out for anyone.
Which should've logged in the server, right?
python manage.py db upgrade
??
python manage.py db show
to see the current head. It should be 163f9fc56815
.
qlalchemy.exc.ProgrammingError: (psycopg2.ProgrammingError) column "mail_status" cannot be cast automatically to type boolean
HINT: You might need to specify "USING mail_status::boolean".
[SQL: 'ALTER TABLE message_settings ALTER COLUMN mail_status TYPE BOOLEAN ']
sqlalchemy.exc.ProgrammingError: (psycopg2.ProgrammingError) column message_settings.sent_at does not exist
LINE 1: ...l_status AS message_settings_user_control_status, message_se...
^
mail_status
used to be 1/0 before
Getting this
v2-server_1 | Creating Event Topics...
v2-server_1 | Creating Event Types...
v2-server_1 | Creating Event Locations...
v2-server_1 | Creating admin message settings...
v2-server_1 | Traceback (most recent call last):
v2-server_1 | File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1182, in _execute_context
v2-server_1 | context)
v2-server_1 | File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/default.py", line 470, in do_execute
v2-server_1 | cursor.execute(statement, parameters)
v2-server_1 | psycopg2.ProgrammingError: column message_settings.sent_at does not exist
v2-server_1 | LINE 1: ...l_status AS message_settings_user_control_status, message_se...
v2-server_1 | ^
v2-server_1 |
getting this
open-for-all
label in the server repository. These issues haven't been claimed by anyone and can be taken by someone who is short in issues to work on. https://github.com/fossasia/open-event-server/issues?q=is%3Aissue+is%3Aopen+label%3Aopen-for-all
I'm getting the same error that @Kreijstal was getting:
sqlalchemy.exc.ProgrammingError: (psycopg2.ProgrammingError) column "mail_status" cannot be cast automatically to type boolean
HINT: You might need to specify "USING mail_status::boolean".
[SQL: 'ALTER TABLE message_settings ALTER COLUMN mail_status TYPE BOOLEAN ']
I guess we need to add the USING mail_status::boolean
flag to the current migration file, i.e., 163f9fc56815_.py