Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialize tables on first load in forms #365

Merged
merged 5 commits into from
Feb 4, 2021
Merged

Commits on Feb 1, 2021

  1. FXD: initialize forms on app import or on demand

    - forms.db and necessary tables (analytics and forms) need to be created before forms app can be used.
    - /configure will test for database and table (forms) and create tables (forms, analytics) if necessary.
    - scheduler creates database and tables (forms, analytics) on startup.
    
    Without this, forms app wouldn't work.
    bkamapantula committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    009d491 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2021

  1. FXD: use formhandler columns to initiate table creation

    - remove create_form_tables utility that uses queries
    - introduce formhandler columns-based table creation for `analytics` and `forms` tables
      - downstream impact: update data-source for `.formhandler()` in form.html
    - disable mouse events while previewing the form at `/form/id`
    bkamapantula committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    28a3d6d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0d97e2e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    60f5456 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2021

  1. Configuration menu
    Copy the full SHA
    0b5c129 View commit details
    Browse the repository at this point in the history