mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 09:51:11 -05:00
Add filename to dvla_organisation table
Added a filename column to the dvla_organisation table and populated it with the filenames that are currently hard-coded in template-preview. The filenames for letter logos are going to be stored in the database, instead of in template-preview.
This commit is contained in:
@@ -247,6 +247,7 @@ class DVLAOrganisation(db.Model):
|
||||
__tablename__ = 'dvla_organisation'
|
||||
id = db.Column(db.String, primary_key=True)
|
||||
name = db.Column(db.String(255), nullable=True)
|
||||
filename = db.Column(db.String(255), nullable=True)
|
||||
|
||||
|
||||
INTERNATIONAL_SMS_TYPE = 'international_sms'
|
||||
|
||||
Reference in New Issue
Block a user