1. 15 2月, 2017 2 次提交
  2. 14 2月, 2017 13 次提交
  3. 13 2月, 2017 1 次提交
  4. 11 2月, 2017 3 次提交
    • Y
      Add method for creating foreign keys concurrently · a97dcc07
      Yorick Peterse 提交于
      This method allows one to create foreign keys without blocking access to
      the source table, but only on PostgreSQL.
      
      When creating a regular foreign key the "ALTER TABLE" statement used for
      this won't return until all data has been validated. This statement in
      turn will acquire a lock on the source table. As a result this lock can
      be held for quite a long amount of time, depending on the number of rows
      and system load.
      
      By breaking up the foreign key creation process in two steps (creation,
      and validation) we can reduce the amount of locking to a minimum.
      Locking is still necessary for the "ALTER TABLE" statement that adds the
      constraint, but this is a fast process and so will only block access for
      a few milliseconds.
      a97dcc07
    • A
      Revert "Merge branch 'add-additional-checks-to-ca-data' into 'master' · 7b207847
      Alfredo Sumaran 提交于
      This reverts commit b7c5ca49, reversing
      changes made to 9745c98b.
      7b207847
    • D
      Rename Files::DeleteService to Files::DestroyService · fa233964
      dixpac 提交于
      Reason for renaming is to comply with naming convention of services in
      codebase.
      fa233964
  5. 10 2月, 2017 3 次提交
  6. 09 2月, 2017 2 次提交
  7. 08 2月, 2017 6 次提交
  8. 07 2月, 2017 10 次提交