Endpoint for recording events in api.

An event has an id, a type and a blob of json attached.
This commit is contained in:
Adam Shimali
2016-04-27 10:27:05 +01:00
parent bca61454f3
commit dacbbfbf2f
10 changed files with 130 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
"""empty message
Revision ID: 0009_events_table
Revises: 0008_archive_template
Create Date: 2016-04-26 13:08:42.892813
"""
# revision identifiers, used by Alembic.
revision = '0009_events_table'
down_revision = '0008_archive_template'
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.create_table('events',
sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False),
sa.Column('event_type', sa.String(length=255), nullable=False),
sa.Column('created_at', sa.DateTime(), nullable=False),
sa.Column('data', postgresql.JSON(), nullable=False),
sa.PrimaryKeyConstraint('id')
)
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.drop_table('events')
### end Alembic commands ###