gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-bank] branch master updated (baa520a -> 44f92cd)


From: gnunet
Subject: [GNUnet-SVN] [taler-bank] branch master updated (baa520a -> 44f92cd)
Date: Sat, 04 Nov 2017 18:18:56 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a change to branch master
in repository bank.

    from baa520a  linting
     new 1af891c  add indices where they belong (#5153)
     new 44f92cd  ignore generated files

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                      | 5 +++++
 talerbank/app/models.py         | 5 ++++-
 talerbank/app/static/web-common | 2 +-
 3 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index e217b27..6fe5135 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,8 @@ bank.wsgi
 bank-admin.wsgi
 talerbank.egg-info
 talerbank/vassals-*/*.ini
+doc/mdate-sh
+doc/stamp-vti
+doc/taler-bank.info
+doc/version.texi
+doc/texinfo.tex
diff --git a/talerbank/app/models.py b/talerbank/app/models.py
index 064dbed..d254cc4 100644
--- a/talerbank/app/models.py
+++ b/talerbank/app/models.py
@@ -71,9 +71,12 @@ class BankTransaction(models.Model):
     amount = AmountField(default=False)
     debit_account = models.ForeignKey(BankAccount,
                                       on_delete=models.CASCADE,
+                                      db_index=True,
                                       related_name="debit_account")
     credit_account = models.ForeignKey(BankAccount,
                                        on_delete=models.CASCADE,
+                                       db_index=True,
                                        related_name="credit_account")
     subject = models.CharField(default="(no subject given)", max_length=200)
-    date = models.DateTimeField(auto_now=True)
+    date = models.DateTimeField(auto_now=True,
+                                db_index=True)
diff --git a/talerbank/app/static/web-common b/talerbank/app/static/web-common
index 489a9e3..d7e0135 160000
--- a/talerbank/app/static/web-common
+++ b/talerbank/app/static/web-common
@@ -1 +1 @@
-Subproject commit 489a9e38e6960fdce309ab8cf5ff66d930ecb3bc
+Subproject commit d7e013594d15388b1a7342a44a0e9c8d4ecca82d

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]