From b3ed9e5dadf80f29b5eec565ae529318e24b9a5a Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 8 Jul 2018 12:58:24 +0300 Subject: [PATCH] Update setup.sql --- database/setup.sql | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/database/setup.sql b/database/setup.sql index 2bedb92076..7d179d5d05 100644 --- a/database/setup.sql +++ b/database/setup.sql @@ -886,6 +886,7 @@ CREATE TABLE `date_formats` ( `format` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `picker_format` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `format_moment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, + `format_dart` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -896,7 +897,7 @@ CREATE TABLE `date_formats` ( LOCK TABLES `date_formats` WRITE; /*!40000 ALTER TABLE `date_formats` DISABLE KEYS */; -INSERT INTO `date_formats` VALUES (1,'d/M/Y','dd/M/yyyy','DD/MMM/YYYY'),(2,'d-M-Y','dd-M-yyyy','DD-MMM-YYYY'),(3,'d/F/Y','dd/MM/yyyy','DD/MMMM/YYYY'),(4,'d-F-Y','dd-MM-yyyy','DD-MMMM-YYYY'),(5,'M j, Y','M d, yyyy','MMM D, YYYY'),(6,'F j, Y','MM d, yyyy','MMMM D, YYYY'),(7,'D M j, Y','D MM d, yyyy','ddd MMM Do, YYYY'),(8,'Y-m-d','yyyy-mm-dd','YYYY-MM-DD'),(9,'d-m-Y','dd-mm-yyyy','DD-MM-YYYY'),(10,'m/d/Y','mm/dd/yyyy','MM/DD/YYYY'),(11,'d.m.Y','dd.mm.yyyy','D.MM.YYYY'),(12,'j. M. Y','d. M. yyyy','DD. MMM. YYYY'),(13,'j. F Y','d. MM yyyy','DD. MMMM YYYY'); +INSERT INTO `date_formats` VALUES (1,'d/M/Y','dd/M/yyyy','DD/MMM/YYYY','dd/MMM/yyyy'),(2,'d-M-Y','dd-M-yyyy','DD-MMM-YYYY','dd-MMM-yyyy'),(3,'d/F/Y','dd/MM/yyyy','DD/MMMM/YYYY','dd/MMMM/yyyy'),(4,'d-F-Y','dd-MM-yyyy','DD-MMMM-YYYY','dd-MMMM-yyyy'),(5,'M j, Y','M d, yyyy','MMM D, YYYY','MMM d, yyyy'),(6,'F j, Y','MM d, yyyy','MMMM D, YYYY','MMMM d, yyyy'),(7,'D M j, Y','D MM d, yyyy','ddd MMM Do, YYYY','EEE MMM d, yyyy'),(8,'Y-m-d','yyyy-mm-dd','YYYY-MM-DD','yyyy-MM-dd'),(9,'d-m-Y','dd-mm-yyyy','DD-MM-YYYY','dd-MM-yyyy'),(10,'m/d/Y','mm/dd/yyyy','MM/DD/YYYY','MM/dd/yyyy'),(11,'d.m.Y','dd.mm.yyyy','D.MM.YYYY','dd.MM.yyyy'),(12,'j. M. Y','d. M. yyyy','DD. MMM. YYYY','d. MMM. yyyy'),(13,'j. F Y','d. MM yyyy','DD. MMMM YYYY','d. MMMM yyyy'); /*!40000 ALTER TABLE `date_formats` ENABLE KEYS */; UNLOCK TABLES; @@ -910,6 +911,7 @@ CREATE TABLE `datetime_formats` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `format` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `format_moment` varchar(255) COLLATE utf8_unicode_ci NOT NULL, + `format_dart` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -920,7 +922,7 @@ CREATE TABLE `datetime_formats` ( LOCK TABLES `datetime_formats` WRITE; /*!40000 ALTER TABLE `datetime_formats` DISABLE KEYS */; -INSERT INTO `datetime_formats` VALUES (1,'d/M/Y g:i a','DD/MMM/YYYY h:mm:ss a'),(2,'d-M-Y g:i a','DD-MMM-YYYY h:mm:ss a'),(3,'d/F/Y g:i a','DD/MMMM/YYYY h:mm:ss a'),(4,'d-F-Y g:i a','DD-MMMM-YYYY h:mm:ss a'),(5,'M j, Y g:i a','MMM D, YYYY h:mm:ss a'),(6,'F j, Y g:i a','MMMM D, YYYY h:mm:ss a'),(7,'D M jS, Y g:i a','ddd MMM Do, YYYY h:mm:ss a'),(8,'Y-m-d g:i a','YYYY-MM-DD h:mm:ss a'),(9,'d-m-Y g:i a','DD-MM-YYYY h:mm:ss a'),(10,'m/d/Y g:i a','MM/DD/YYYY h:mm:ss a'),(11,'d.m.Y g:i a','D.MM.YYYY h:mm:ss a'),(12,'j. M. Y g:i a','DD. MMM. YYYY h:mm:ss a'),(13,'j. F Y g:i a','DD. MMMM YYYY h:mm:ss a'); +INSERT INTO `datetime_formats` VALUES (1,'d/M/Y g:i a','DD/MMM/YYYY h:mm:ss a','dd/MMM/yyyy h:mm a'),(2,'d-M-Y g:i a','DD-MMM-YYYY h:mm:ss a','dd-MMM-yyyy h:mm a'),(3,'d/F/Y g:i a','DD/MMMM/YYYY h:mm:ss a','dd/MMMM/yyyy h:mm a'),(4,'d-F-Y g:i a','DD-MMMM-YYYY h:mm:ss a','dd-MMMM-yyyy h:mm a'),(5,'M j, Y g:i a','MMM D, YYYY h:mm:ss a','MMM d, yyyy h:mm a'),(6,'F j, Y g:i a','MMMM D, YYYY h:mm:ss a','MMMM d, yyyy h:mm a'),(7,'D M jS, Y g:i a','ddd MMM Do, YYYY h:mm:ss a','EEE MMM d, yyyy h:mm a'),(8,'Y-m-d g:i a','YYYY-MM-DD h:mm:ss a','yyyy-MM-dd h:mm a'),(9,'d-m-Y g:i a','DD-MM-YYYY h:mm:ss a','dd-MM-yyyy h:mm a'),(10,'m/d/Y g:i a','MM/DD/YYYY h:mm:ss a','MM/dd/yyyy h:mm a'),(11,'d.m.Y g:i a','D.MM.YYYY h:mm:ss a','dd.MM.yyyy h:mm a'),(12,'j. M. Y g:i a','DD. MMM. YYYY h:mm:ss a','d. MMM. yyyy h:mm a'),(13,'j. F Y g:i a','DD. MMMM YYYY h:mm:ss a','d. MMMM yyyy h:mm a'); /*!40000 ALTER TABLE `datetime_formats` ENABLE KEYS */; UNLOCK TABLES; @@ -1237,7 +1239,7 @@ CREATE TABLE `gateways` ( LOCK TABLES `gateways` WRITE; /*!40000 ALTER TABLE `gateways` DISABLE KEYS */; -INSERT INTO `gateways` VALUES (1,'2018-06-17 07:36:31','2018-06-17 07:36:31','Authorize.Net AIM','AuthorizeNet_AIM',1,1,5,0,NULL,0,0),(2,'2018-06-17 07:36:31','2018-06-17 07:36:31','Authorize.Net SIM','AuthorizeNet_SIM',1,2,10000,0,NULL,0,0),(3,'2018-06-17 07:36:31','2018-06-17 07:36:31','CardSave','CardSave',1,1,10000,0,NULL,0,0),(4,'2018-06-17 07:36:31','2018-06-17 07:36:31','Eway Rapid','Eway_RapidShared',1,1,10000,0,NULL,1,0),(5,'2018-06-17 07:36:31','2018-06-17 07:36:31','FirstData Connect','FirstData_Connect',1,1,10000,0,NULL,0,0),(6,'2018-06-17 07:36:31','2018-06-17 07:36:31','GoCardless','GoCardless',1,2,10000,0,NULL,1,0),(7,'2018-06-17 07:36:31','2018-06-17 07:36:31','Migs ThreeParty','Migs_ThreeParty',1,1,10000,0,NULL,0,0),(8,'2018-06-17 07:36:31','2018-06-17 07:36:31','Migs TwoParty','Migs_TwoParty',1,1,10000,0,NULL,0,0),(9,'2018-06-17 07:36:31','2018-06-17 07:36:31','Mollie','Mollie',1,1,8,0,NULL,1,0),(10,'2018-06-17 07:36:31','2018-06-17 07:36:31','MultiSafepay','MultiSafepay',1,1,10000,0,NULL,0,0),(11,'2018-06-17 07:36:31','2018-06-17 07:36:31','Netaxept','Netaxept',1,1,10000,0,NULL,0,0),(12,'2018-06-17 07:36:31','2018-06-17 07:36:31','NetBanx','NetBanx',1,1,10000,0,NULL,0,0),(13,'2018-06-17 07:36:31','2018-06-17 07:36:31','PayFast','PayFast',1,1,10000,0,NULL,1,0),(14,'2018-06-17 07:36:31','2018-06-17 07:36:31','Payflow Pro','Payflow_Pro',1,1,10000,0,NULL,0,0),(15,'2018-06-17 07:36:31','2018-06-17 07:36:31','PaymentExpress PxPay','PaymentExpress_PxPay',1,1,10000,0,NULL,0,0),(16,'2018-06-17 07:36:31','2018-06-17 07:36:31','PaymentExpress PxPost','PaymentExpress_PxPost',1,1,10000,0,NULL,0,0),(17,'2018-06-17 07:36:31','2018-06-17 07:36:31','PayPal Express','PayPal_Express',1,1,4,0,NULL,1,0),(18,'2018-06-17 07:36:31','2018-06-17 07:36:31','PayPal Pro','PayPal_Pro',1,1,10000,0,NULL,0,0),(19,'2018-06-17 07:36:31','2018-06-17 07:36:31','Pin','Pin',1,1,10000,0,NULL,0,0),(20,'2018-06-17 07:36:31','2018-06-17 07:36:31','SagePay Direct','SagePay_Direct',1,1,10000,0,NULL,0,0),(21,'2018-06-17 07:36:31','2018-06-17 07:36:31','SagePay Server','SagePay_Server',1,2,10000,0,NULL,1,0),(22,'2018-06-17 07:36:31','2018-06-17 07:36:31','SecurePay DirectPost','SecurePay_DirectPost',1,1,10000,0,NULL,0,0),(23,'2018-06-17 07:36:31','2018-06-17 07:36:31','Stripe','Stripe',1,1,1,0,NULL,0,0),(24,'2018-06-17 07:36:31','2018-06-17 07:36:31','TargetPay Direct eBanking','TargetPay_Directebanking',1,1,10000,0,NULL,0,0),(25,'2018-06-17 07:36:31','2018-06-17 07:36:31','TargetPay Ideal','TargetPay_Ideal',1,1,10000,0,NULL,0,0),(26,'2018-06-17 07:36:31','2018-06-17 07:36:31','TargetPay Mr Cash','TargetPay_Mrcash',1,1,10000,0,NULL,0,0),(27,'2018-06-17 07:36:31','2018-06-17 07:36:31','TwoCheckout','TwoCheckout',1,1,10000,0,NULL,1,0),(28,'2018-06-17 07:36:31','2018-06-17 07:36:31','WorldPay','WorldPay',1,1,10000,0,NULL,0,0),(29,'2018-06-17 07:36:31','2018-06-17 07:36:31','BeanStream','BeanStream',1,2,10000,0,NULL,0,0),(30,'2018-06-17 07:36:31','2018-06-17 07:36:31','Psigate','Psigate',1,2,10000,0,NULL,0,0),(31,'2018-06-17 07:36:31','2018-06-17 07:36:31','moolah','AuthorizeNet_AIM',1,1,10000,0,NULL,0,0),(32,'2018-06-17 07:36:31','2018-06-17 07:36:31','Alipay','Alipay_Express',1,1,10000,0,NULL,0,0),(33,'2018-06-17 07:36:31','2018-06-17 07:36:31','Buckaroo','Buckaroo_CreditCard',1,1,10000,0,NULL,0,0),(34,'2018-06-17 07:36:31','2018-06-17 07:36:31','Coinbase','Coinbase',1,1,10000,0,NULL,1,0),(35,'2018-06-17 07:36:31','2018-06-17 07:36:31','DataCash','DataCash',1,1,10000,0,NULL,0,0),(36,'2018-06-17 07:36:31','2018-06-17 07:36:31','Neteller','Neteller',1,2,10000,0,NULL,0,0),(37,'2018-06-17 07:36:31','2018-06-17 07:36:31','Pacnet','Pacnet',1,1,10000,0,NULL,0,0),(38,'2018-06-17 07:36:31','2018-06-17 07:36:31','PaymentSense','PaymentSense',1,2,10000,0,NULL,0,0),(39,'2018-06-17 07:36:31','2018-06-17 07:36:31','Realex','Realex_Remote',1,1,10000,0,NULL,0,0),(40,'2018-06-17 07:36:31','2018-06-17 07:36:31','Sisow','Sisow',1,1,10000,0,NULL,0,0),(41,'2018-06-17 07:36:31','2018-06-17 07:36:31','Skrill','Skrill',1,1,10000,0,NULL,1,0),(42,'2018-06-17 07:36:31','2018-06-17 07:36:31','BitPay','BitPay',1,1,7,0,NULL,1,0),(43,'2018-06-17 07:36:31','2018-06-17 07:36:31','Dwolla','Dwolla',1,1,6,0,NULL,1,0),(44,'2018-06-17 07:36:31','2018-06-17 07:36:31','AGMS','Agms',1,1,10000,0,NULL,0,0),(45,'2018-06-17 07:36:31','2018-06-17 07:36:31','Barclays','BarclaysEpdq\\Essential',1,1,10000,0,NULL,0,0),(46,'2018-06-17 07:36:31','2018-06-17 07:36:31','Cardgate','Cardgate',1,1,10000,0,NULL,0,0),(47,'2018-06-17 07:36:31','2018-06-17 07:36:31','Checkout.com','CheckoutCom',1,1,10000,0,NULL,0,0),(48,'2018-06-17 07:36:31','2018-06-17 07:36:31','Creditcall','Creditcall',1,1,10000,0,NULL,0,0),(49,'2018-06-17 07:36:31','2018-06-17 07:36:31','Cybersource','Cybersource',1,1,10000,0,NULL,0,0),(50,'2018-06-17 07:36:31','2018-06-17 07:36:31','ecoPayz','Ecopayz',1,1,10000,0,NULL,0,0),(51,'2018-06-17 07:36:31','2018-06-17 07:36:31','Fasapay','Fasapay',1,1,10000,0,NULL,0,0),(52,'2018-06-17 07:36:31','2018-06-17 07:36:31','Komoju','Komoju',1,1,10000,0,NULL,0,0),(53,'2018-06-17 07:36:31','2018-06-17 07:36:31','Multicards','Multicards',1,2,10000,0,NULL,0,0),(54,'2018-06-17 07:36:31','2018-06-17 07:36:31','Pagar.Me','Pagarme',1,2,10000,0,NULL,0,0),(55,'2018-06-17 07:36:31','2018-06-17 07:36:31','Paysafecard','Paysafecard',1,1,10000,0,NULL,0,0),(56,'2018-06-17 07:36:31','2018-06-17 07:36:31','Paytrace','Paytrace_CreditCard',1,1,10000,0,NULL,0,0),(57,'2018-06-17 07:36:31','2018-06-17 07:36:31','Secure Trading','SecureTrading',1,1,10000,0,NULL,0,0),(58,'2018-06-17 07:36:31','2018-06-17 07:36:31','SecPay','SecPay',1,1,10000,0,NULL,0,0),(59,'2018-06-17 07:36:31','2018-06-17 07:36:31','WeChat Express','WeChat_Express',1,2,10000,0,NULL,0,0),(60,'2018-06-17 07:36:31','2018-06-17 07:36:31','WePay','WePay',1,1,3,0,NULL,0,0),(61,'2018-06-17 07:36:31','2018-06-17 07:36:31','Braintree','Braintree',1,1,3,0,NULL,0,0),(62,'2018-06-17 07:36:31','2018-06-17 07:36:31','Custom','Custom1',1,1,20,0,NULL,1,0),(63,'2018-06-17 07:36:31','2018-06-17 07:36:31','FirstData Payeezy','FirstData_Payeezy',1,1,10000,0,NULL,0,0),(64,'2018-06-17 07:36:31','2018-06-17 07:36:31','GoCardless','GoCardlessV2\\Redirect',1,1,9,0,NULL,1,0),(65,'2018-06-17 07:36:31','2018-06-17 07:36:31','PagSeguro','PagSeguro',1,1,10000,0,NULL,0,0),(66,'2018-06-17 07:36:31','2018-06-17 07:36:31','PAYMILL','Paymill',1,1,10000,0,NULL,0,0),(67,'2018-06-17 07:36:31','2018-06-17 07:36:31','Custom','Custom2',1,1,21,0,NULL,1,0),(68,'2018-06-17 07:36:31','2018-06-17 07:36:31','Custom','Custom3',1,1,22,0,NULL,1,0); +INSERT INTO `gateways` VALUES (1,'2018-07-08 06:55:49','2018-07-08 06:55:49','Authorize.Net AIM','AuthorizeNet_AIM',1,1,5,0,NULL,0,0),(2,'2018-07-08 06:55:49','2018-07-08 06:55:49','Authorize.Net SIM','AuthorizeNet_SIM',1,2,10000,0,NULL,0,0),(3,'2018-07-08 06:55:49','2018-07-08 06:55:49','CardSave','CardSave',1,1,10000,0,NULL,0,0),(4,'2018-07-08 06:55:49','2018-07-08 06:55:49','Eway Rapid','Eway_RapidShared',1,1,10000,0,NULL,1,0),(5,'2018-07-08 06:55:49','2018-07-08 06:55:49','FirstData Connect','FirstData_Connect',1,1,10000,0,NULL,0,0),(6,'2018-07-08 06:55:49','2018-07-08 06:55:49','GoCardless','GoCardless',1,2,10000,0,NULL,1,0),(7,'2018-07-08 06:55:49','2018-07-08 06:55:49','Migs ThreeParty','Migs_ThreeParty',1,1,10000,0,NULL,0,0),(8,'2018-07-08 06:55:49','2018-07-08 06:55:49','Migs TwoParty','Migs_TwoParty',1,1,10000,0,NULL,0,0),(9,'2018-07-08 06:55:49','2018-07-08 06:55:49','Mollie','Mollie',1,1,8,0,NULL,1,0),(10,'2018-07-08 06:55:49','2018-07-08 06:55:49','MultiSafepay','MultiSafepay',1,1,10000,0,NULL,0,0),(11,'2018-07-08 06:55:49','2018-07-08 06:55:49','Netaxept','Netaxept',1,1,10000,0,NULL,0,0),(12,'2018-07-08 06:55:49','2018-07-08 06:55:49','NetBanx','NetBanx',1,1,10000,0,NULL,0,0),(13,'2018-07-08 06:55:49','2018-07-08 06:55:49','PayFast','PayFast',1,1,10000,0,NULL,1,0),(14,'2018-07-08 06:55:49','2018-07-08 06:55:49','Payflow Pro','Payflow_Pro',1,1,10000,0,NULL,0,0),(15,'2018-07-08 06:55:49','2018-07-08 06:55:49','PaymentExpress PxPay','PaymentExpress_PxPay',1,1,10000,0,NULL,0,0),(16,'2018-07-08 06:55:49','2018-07-08 06:55:49','PaymentExpress PxPost','PaymentExpress_PxPost',1,1,10000,0,NULL,0,0),(17,'2018-07-08 06:55:49','2018-07-08 06:55:49','PayPal Express','PayPal_Express',1,1,4,0,NULL,1,0),(18,'2018-07-08 06:55:49','2018-07-08 06:55:49','PayPal Pro','PayPal_Pro',1,1,10000,0,NULL,0,0),(19,'2018-07-08 06:55:49','2018-07-08 06:55:49','Pin','Pin',1,1,10000,0,NULL,0,0),(20,'2018-07-08 06:55:49','2018-07-08 06:55:49','SagePay Direct','SagePay_Direct',1,1,10000,0,NULL,0,0),(21,'2018-07-08 06:55:49','2018-07-08 06:55:49','SagePay Server','SagePay_Server',1,2,10000,0,NULL,1,0),(22,'2018-07-08 06:55:49','2018-07-08 06:55:49','SecurePay DirectPost','SecurePay_DirectPost',1,1,10000,0,NULL,0,0),(23,'2018-07-08 06:55:49','2018-07-08 06:55:49','Stripe','Stripe',1,1,1,0,NULL,0,0),(24,'2018-07-08 06:55:49','2018-07-08 06:55:49','TargetPay Direct eBanking','TargetPay_Directebanking',1,1,10000,0,NULL,0,0),(25,'2018-07-08 06:55:49','2018-07-08 06:55:49','TargetPay Ideal','TargetPay_Ideal',1,1,10000,0,NULL,0,0),(26,'2018-07-08 06:55:49','2018-07-08 06:55:49','TargetPay Mr Cash','TargetPay_Mrcash',1,1,10000,0,NULL,0,0),(27,'2018-07-08 06:55:49','2018-07-08 06:55:49','TwoCheckout','TwoCheckout',1,1,10000,0,NULL,1,0),(28,'2018-07-08 06:55:49','2018-07-08 06:55:49','WorldPay','WorldPay',1,1,10000,0,NULL,0,0),(29,'2018-07-08 06:55:49','2018-07-08 06:55:49','BeanStream','BeanStream',1,2,10000,0,NULL,0,0),(30,'2018-07-08 06:55:49','2018-07-08 06:55:49','Psigate','Psigate',1,2,10000,0,NULL,0,0),(31,'2018-07-08 06:55:49','2018-07-08 06:55:49','moolah','AuthorizeNet_AIM',1,1,10000,0,NULL,0,0),(32,'2018-07-08 06:55:49','2018-07-08 06:55:49','Alipay','Alipay_Express',1,1,10000,0,NULL,0,0),(33,'2018-07-08 06:55:49','2018-07-08 06:55:49','Buckaroo','Buckaroo_CreditCard',1,1,10000,0,NULL,0,0),(34,'2018-07-08 06:55:49','2018-07-08 06:55:49','Coinbase','Coinbase',1,1,10000,0,NULL,1,0),(35,'2018-07-08 06:55:49','2018-07-08 06:55:49','DataCash','DataCash',1,1,10000,0,NULL,0,0),(36,'2018-07-08 06:55:49','2018-07-08 06:55:49','Neteller','Neteller',1,2,10000,0,NULL,0,0),(37,'2018-07-08 06:55:49','2018-07-08 06:55:49','Pacnet','Pacnet',1,1,10000,0,NULL,0,0),(38,'2018-07-08 06:55:49','2018-07-08 06:55:49','PaymentSense','PaymentSense',1,2,10000,0,NULL,0,0),(39,'2018-07-08 06:55:49','2018-07-08 06:55:49','Realex','Realex_Remote',1,1,10000,0,NULL,0,0),(40,'2018-07-08 06:55:49','2018-07-08 06:55:49','Sisow','Sisow',1,1,10000,0,NULL,0,0),(41,'2018-07-08 06:55:49','2018-07-08 06:55:49','Skrill','Skrill',1,1,10000,0,NULL,1,0),(42,'2018-07-08 06:55:49','2018-07-08 06:55:49','BitPay','BitPay',1,1,7,0,NULL,1,0),(43,'2018-07-08 06:55:49','2018-07-08 06:55:49','Dwolla','Dwolla',1,1,6,0,NULL,1,0),(44,'2018-07-08 06:55:49','2018-07-08 06:55:49','AGMS','Agms',1,1,10000,0,NULL,0,0),(45,'2018-07-08 06:55:49','2018-07-08 06:55:49','Barclays','BarclaysEpdq\\Essential',1,1,10000,0,NULL,0,0),(46,'2018-07-08 06:55:49','2018-07-08 06:55:49','Cardgate','Cardgate',1,1,10000,0,NULL,0,0),(47,'2018-07-08 06:55:49','2018-07-08 06:55:49','Checkout.com','CheckoutCom',1,1,10000,0,NULL,0,0),(48,'2018-07-08 06:55:49','2018-07-08 06:55:49','Creditcall','Creditcall',1,1,10000,0,NULL,0,0),(49,'2018-07-08 06:55:49','2018-07-08 06:55:49','Cybersource','Cybersource',1,1,10000,0,NULL,0,0),(50,'2018-07-08 06:55:49','2018-07-08 06:55:49','ecoPayz','Ecopayz',1,1,10000,0,NULL,0,0),(51,'2018-07-08 06:55:49','2018-07-08 06:55:49','Fasapay','Fasapay',1,1,10000,0,NULL,0,0),(52,'2018-07-08 06:55:49','2018-07-08 06:55:49','Komoju','Komoju',1,1,10000,0,NULL,0,0),(53,'2018-07-08 06:55:49','2018-07-08 06:55:49','Multicards','Multicards',1,2,10000,0,NULL,0,0),(54,'2018-07-08 06:55:49','2018-07-08 06:55:49','Pagar.Me','Pagarme',1,2,10000,0,NULL,0,0),(55,'2018-07-08 06:55:49','2018-07-08 06:55:49','Paysafecard','Paysafecard',1,1,10000,0,NULL,0,0),(56,'2018-07-08 06:55:49','2018-07-08 06:55:49','Paytrace','Paytrace_CreditCard',1,1,10000,0,NULL,0,0),(57,'2018-07-08 06:55:49','2018-07-08 06:55:49','Secure Trading','SecureTrading',1,1,10000,0,NULL,0,0),(58,'2018-07-08 06:55:49','2018-07-08 06:55:49','SecPay','SecPay',1,1,10000,0,NULL,0,0),(59,'2018-07-08 06:55:49','2018-07-08 06:55:49','WeChat Express','WeChat_Express',1,2,10000,0,NULL,0,0),(60,'2018-07-08 06:55:49','2018-07-08 06:55:49','WePay','WePay',1,1,3,0,NULL,0,0),(61,'2018-07-08 06:55:49','2018-07-08 06:55:49','Braintree','Braintree',1,1,3,0,NULL,0,0),(62,'2018-07-08 06:55:49','2018-07-08 06:55:49','Custom','Custom1',1,1,20,0,NULL,1,0),(63,'2018-07-08 06:55:49','2018-07-08 06:55:49','FirstData Payeezy','FirstData_Payeezy',1,1,10000,0,NULL,0,0),(64,'2018-07-08 06:55:49','2018-07-08 06:55:49','GoCardless','GoCardlessV2\\Redirect',1,1,9,0,NULL,1,0),(65,'2018-07-08 06:55:49','2018-07-08 06:55:49','PagSeguro','PagSeguro',1,1,10000,0,NULL,0,0),(66,'2018-07-08 06:55:49','2018-07-08 06:55:49','PAYMILL','Paymill',1,1,10000,0,NULL,0,0),(67,'2018-07-08 06:55:49','2018-07-08 06:55:49','Custom','Custom2',1,1,21,0,NULL,1,0),(68,'2018-07-08 06:55:49','2018-07-08 06:55:49','Custom','Custom3',1,1,22,0,NULL,1,0); /*!40000 ALTER TABLE `gateways` ENABLE KEYS */; UNLOCK TABLES; @@ -1786,7 +1788,7 @@ CREATE TABLE `migrations` ( `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -1795,7 +1797,7 @@ CREATE TABLE `migrations` ( LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; -INSERT INTO `migrations` VALUES (1,'2013_11_05_180133_confide_setup_users_table',1),(2,'2013_11_28_195703_setup_countries_table',1),(3,'2014_02_13_151500_add_cascase_drops',1),(4,'2014_02_19_151817_add_support_for_invoice_designs',1),(5,'2014_03_03_155556_add_phone_to_account',1),(6,'2014_03_19_201454_add_language_support',1),(7,'2014_03_20_200300_create_payment_libraries',1),(8,'2014_03_23_051736_enable_forcing_jspdf',1),(9,'2014_03_25_102200_add_sort_and_recommended_to_gateways',1),(10,'2014_04_03_191105_add_pro_plan',1),(11,'2014_04_17_100523_add_remember_token',1),(12,'2014_04_17_145108_add_custom_fields',1),(13,'2014_04_23_170909_add_products_settings',1),(14,'2014_04_29_174315_add_advanced_settings',1),(15,'2014_05_17_175626_add_quotes',1),(16,'2014_06_17_131940_add_accepted_credit_cards_to_account_gateways',1),(17,'2014_07_13_142654_one_click_install',1),(18,'2014_07_17_205900_support_hiding_quantity',1),(19,'2014_07_24_171214_add_zapier_support',1),(20,'2014_10_01_141248_add_company_vat_number',1),(21,'2014_10_05_141856_track_last_seen_message',1),(22,'2014_10_06_103529_add_timesheets',1),(23,'2014_10_06_195330_add_invoice_design_table',1),(24,'2014_10_13_054100_add_invoice_number_settings',1),(25,'2014_10_14_225227_add_danish_translation',1),(26,'2014_10_22_174452_add_affiliate_price',1),(27,'2014_10_30_184126_add_company_id_number',1),(28,'2014_11_04_200406_allow_null_client_currency',1),(29,'2014_12_03_154119_add_discount_type',1),(30,'2015_02_12_102940_add_email_templates',1),(31,'2015_02_17_131714_support_token_billing',1),(32,'2015_02_27_081836_add_invoice_footer',1),(33,'2015_03_03_140259_add_tokens',1),(34,'2015_03_09_151011_add_ip_to_activity',1),(35,'2015_03_15_174122_add_pdf_email_attachment_option',1),(36,'2015_03_30_100000_create_password_resets_table',1),(37,'2015_04_12_093447_add_sv_language',1),(38,'2015_04_13_100333_add_notify_approved',1),(39,'2015_04_16_122647_add_partial_amount_to_invoices',1),(40,'2015_05_21_184104_add_font_size',1),(41,'2015_05_27_121828_add_tasks',1),(42,'2015_05_27_170808_add_custom_invoice_labels',1),(43,'2015_06_09_134208_add_has_tasks_to_invoices',1),(44,'2015_06_14_093410_enable_resuming_tasks',1),(45,'2015_06_14_173025_multi_company_support',1),(46,'2015_07_07_160257_support_locking_account',1),(47,'2015_07_08_114333_simplify_tasks',1),(48,'2015_07_19_081332_add_custom_design',1),(49,'2015_07_27_183830_add_pdfmake_support',1),(50,'2015_08_13_084041_add_formats_to_datetime_formats_table',1),(51,'2015_09_04_080604_add_swap_postal_code',1),(52,'2015_09_07_135935_add_account_domain',1),(53,'2015_09_10_185135_add_reminder_emails',1),(54,'2015_10_07_135651_add_social_login',1),(55,'2015_10_21_075058_add_default_tax_rates',1),(56,'2015_10_21_185724_add_invoice_number_pattern',1),(57,'2015_10_27_180214_add_is_system_to_activities',1),(58,'2015_10_29_133747_add_default_quote_terms',1),(59,'2015_11_01_080417_encrypt_tokens',1),(60,'2015_11_03_181318_improve_currency_localization',1),(61,'2015_11_30_133206_add_email_designs',1),(62,'2015_12_27_154513_add_reminder_settings',1),(63,'2015_12_30_042035_add_client_view_css',1),(64,'2016_01_04_175228_create_vendors_table',1),(65,'2016_01_06_153144_add_invoice_font_support',1),(66,'2016_01_17_155725_add_quote_to_invoice_option',1),(67,'2016_01_18_195351_add_bank_accounts',1),(68,'2016_01_24_112646_add_bank_subaccounts',1),(69,'2016_01_27_173015_add_header_footer_option',1),(70,'2016_02_01_135956_add_source_currency_to_expenses',1),(71,'2016_02_25_152948_add_client_password',1),(72,'2016_02_28_081424_add_custom_invoice_fields',1),(73,'2016_03_14_066181_add_user_permissions',1),(74,'2016_03_14_214710_add_support_three_decimal_taxes',1),(75,'2016_03_22_168362_add_documents',1),(76,'2016_03_23_215049_support_multiple_tax_rates',1),(77,'2016_04_16_103943_enterprise_plan',1),(78,'2016_04_18_174135_add_page_size',1),(79,'2016_04_23_182223_payments_changes',1),(80,'2016_05_16_102925_add_swap_currency_symbol_to_currency',1),(81,'2016_05_18_085739_add_invoice_type_support',1),(82,'2016_05_24_164847_wepay_ach',1),(83,'2016_07_08_083802_support_new_pricing',1),(84,'2016_07_13_083821_add_buy_now_buttons',1),(85,'2016_08_10_184027_add_support_for_bots',1),(86,'2016_09_05_150625_create_gateway_types',1),(87,'2016_10_20_191150_add_expense_to_activities',1),(88,'2016_11_03_113316_add_invoice_signature',1),(89,'2016_11_03_161149_add_bluevine_fields',1),(90,'2016_11_28_092904_add_task_projects',1),(91,'2016_12_13_113955_add_pro_plan_discount',1),(92,'2017_01_01_214241_add_inclusive_taxes',1),(93,'2017_02_23_095934_add_custom_product_fields',1),(94,'2017_03_16_085702_add_gateway_fee_location',1),(95,'2017_04_16_101744_add_custom_contact_fields',1),(96,'2017_04_30_174702_add_multiple_database_support',1),(97,'2017_05_10_144928_add_oauth_to_lookups',1),(98,'2017_05_16_101715_add_default_note_to_client',1),(99,'2017_06_19_111515_update_dark_mode',1),(100,'2017_07_18_124150_add_late_fees',1),(101,'2017_08_14_085334_increase_precision',1),(102,'2017_10_17_083846_add_default_rates',1),(103,'2017_11_15_114422_add_subdomain_to_lookups',1),(104,'2017_12_13_074024_add_remember_2fa_token',1),(105,'2018_01_10_073825_add_subscription_format',1),(106,'2018_03_08_150414_add_slack_notifications',1),(107,'2018_03_30_115805_add_more_custom_fields',1),(108,'2018_04_16_142434_add_custom_domain',1),(109,'2018_05_14_091806_limit_notifications',1),(110,'2018_05_19_095124_add_json_permissions',1); +INSERT INTO `migrations` VALUES (1,'2013_11_05_180133_confide_setup_users_table',1),(2,'2013_11_28_195703_setup_countries_table',1),(3,'2014_02_13_151500_add_cascase_drops',1),(4,'2014_02_19_151817_add_support_for_invoice_designs',1),(5,'2014_03_03_155556_add_phone_to_account',1),(6,'2014_03_19_201454_add_language_support',1),(7,'2014_03_20_200300_create_payment_libraries',1),(8,'2014_03_23_051736_enable_forcing_jspdf',1),(9,'2014_03_25_102200_add_sort_and_recommended_to_gateways',1),(10,'2014_04_03_191105_add_pro_plan',1),(11,'2014_04_17_100523_add_remember_token',1),(12,'2014_04_17_145108_add_custom_fields',1),(13,'2014_04_23_170909_add_products_settings',1),(14,'2014_04_29_174315_add_advanced_settings',1),(15,'2014_05_17_175626_add_quotes',1),(16,'2014_06_17_131940_add_accepted_credit_cards_to_account_gateways',1),(17,'2014_07_13_142654_one_click_install',1),(18,'2014_07_17_205900_support_hiding_quantity',1),(19,'2014_07_24_171214_add_zapier_support',1),(20,'2014_10_01_141248_add_company_vat_number',1),(21,'2014_10_05_141856_track_last_seen_message',1),(22,'2014_10_06_103529_add_timesheets',1),(23,'2014_10_06_195330_add_invoice_design_table',1),(24,'2014_10_13_054100_add_invoice_number_settings',1),(25,'2014_10_14_225227_add_danish_translation',1),(26,'2014_10_22_174452_add_affiliate_price',1),(27,'2014_10_30_184126_add_company_id_number',1),(28,'2014_11_04_200406_allow_null_client_currency',1),(29,'2014_12_03_154119_add_discount_type',1),(30,'2015_02_12_102940_add_email_templates',1),(31,'2015_02_17_131714_support_token_billing',1),(32,'2015_02_27_081836_add_invoice_footer',1),(33,'2015_03_03_140259_add_tokens',1),(34,'2015_03_09_151011_add_ip_to_activity',1),(35,'2015_03_15_174122_add_pdf_email_attachment_option',1),(36,'2015_03_30_100000_create_password_resets_table',1),(37,'2015_04_12_093447_add_sv_language',1),(38,'2015_04_13_100333_add_notify_approved',1),(39,'2015_04_16_122647_add_partial_amount_to_invoices',1),(40,'2015_05_21_184104_add_font_size',1),(41,'2015_05_27_121828_add_tasks',1),(42,'2015_05_27_170808_add_custom_invoice_labels',1),(43,'2015_06_09_134208_add_has_tasks_to_invoices',1),(44,'2015_06_14_093410_enable_resuming_tasks',1),(45,'2015_06_14_173025_multi_company_support',1),(46,'2015_07_07_160257_support_locking_account',1),(47,'2015_07_08_114333_simplify_tasks',1),(48,'2015_07_19_081332_add_custom_design',1),(49,'2015_07_27_183830_add_pdfmake_support',1),(50,'2015_08_13_084041_add_formats_to_datetime_formats_table',1),(51,'2015_09_04_080604_add_swap_postal_code',1),(52,'2015_09_07_135935_add_account_domain',1),(53,'2015_09_10_185135_add_reminder_emails',1),(54,'2015_10_07_135651_add_social_login',1),(55,'2015_10_21_075058_add_default_tax_rates',1),(56,'2015_10_21_185724_add_invoice_number_pattern',1),(57,'2015_10_27_180214_add_is_system_to_activities',1),(58,'2015_10_29_133747_add_default_quote_terms',1),(59,'2015_11_01_080417_encrypt_tokens',1),(60,'2015_11_03_181318_improve_currency_localization',1),(61,'2015_11_30_133206_add_email_designs',1),(62,'2015_12_27_154513_add_reminder_settings',1),(63,'2015_12_30_042035_add_client_view_css',1),(64,'2016_01_04_175228_create_vendors_table',1),(65,'2016_01_06_153144_add_invoice_font_support',1),(66,'2016_01_17_155725_add_quote_to_invoice_option',1),(67,'2016_01_18_195351_add_bank_accounts',1),(68,'2016_01_24_112646_add_bank_subaccounts',1),(69,'2016_01_27_173015_add_header_footer_option',1),(70,'2016_02_01_135956_add_source_currency_to_expenses',1),(71,'2016_02_25_152948_add_client_password',1),(72,'2016_02_28_081424_add_custom_invoice_fields',1),(73,'2016_03_14_066181_add_user_permissions',1),(74,'2016_03_14_214710_add_support_three_decimal_taxes',1),(75,'2016_03_22_168362_add_documents',1),(76,'2016_03_23_215049_support_multiple_tax_rates',1),(77,'2016_04_16_103943_enterprise_plan',1),(78,'2016_04_18_174135_add_page_size',1),(79,'2016_04_23_182223_payments_changes',1),(80,'2016_05_16_102925_add_swap_currency_symbol_to_currency',1),(81,'2016_05_18_085739_add_invoice_type_support',1),(82,'2016_05_24_164847_wepay_ach',1),(83,'2016_07_08_083802_support_new_pricing',1),(84,'2016_07_13_083821_add_buy_now_buttons',1),(85,'2016_08_10_184027_add_support_for_bots',1),(86,'2016_09_05_150625_create_gateway_types',1),(87,'2016_10_20_191150_add_expense_to_activities',1),(88,'2016_11_03_113316_add_invoice_signature',1),(89,'2016_11_03_161149_add_bluevine_fields',1),(90,'2016_11_28_092904_add_task_projects',1),(91,'2016_12_13_113955_add_pro_plan_discount',1),(92,'2017_01_01_214241_add_inclusive_taxes',1),(93,'2017_02_23_095934_add_custom_product_fields',1),(94,'2017_03_16_085702_add_gateway_fee_location',1),(95,'2017_04_16_101744_add_custom_contact_fields',1),(96,'2017_04_30_174702_add_multiple_database_support',1),(97,'2017_05_10_144928_add_oauth_to_lookups',1),(98,'2017_05_16_101715_add_default_note_to_client',1),(99,'2017_06_19_111515_update_dark_mode',1),(100,'2017_07_18_124150_add_late_fees',1),(101,'2017_08_14_085334_increase_precision',1),(102,'2017_10_17_083846_add_default_rates',1),(103,'2017_11_15_114422_add_subdomain_to_lookups',1),(104,'2017_12_13_074024_add_remember_2fa_token',1),(105,'2018_01_10_073825_add_subscription_format',1),(106,'2018_03_08_150414_add_slack_notifications',1),(107,'2018_03_30_115805_add_more_custom_fields',1),(108,'2018_04_16_142434_add_custom_domain',1),(109,'2018_05_14_091806_limit_notifications',1),(110,'2018_05_19_095124_add_json_permissions',1),(111,'2018_06_29_110607_add_dart_format_column',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; @@ -1844,7 +1846,7 @@ CREATE TABLE `payment_libraries` ( LOCK TABLES `payment_libraries` WRITE; /*!40000 ALTER TABLE `payment_libraries` DISABLE KEYS */; -INSERT INTO `payment_libraries` VALUES (1,'2018-06-17 07:36:30','2018-06-17 07:36:30','Omnipay',1),(2,'2018-06-17 07:36:30','2018-06-17 07:36:30','PHP-Payments [Deprecated]',1); +INSERT INTO `payment_libraries` VALUES (1,'2018-07-08 06:55:48','2018-07-08 06:55:48','Omnipay',1),(2,'2018-07-08 06:55:48','2018-07-08 06:55:48','PHP-Payments [Deprecated]',1); /*!40000 ALTER TABLE `payment_libraries` ENABLE KEYS */; UNLOCK TABLES; @@ -1951,7 +1953,7 @@ CREATE TABLE `payment_terms` ( LOCK TABLES `payment_terms` WRITE; /*!40000 ALTER TABLE `payment_terms` DISABLE KEYS */; -INSERT INTO `payment_terms` VALUES (1,7,'Net 7','2018-06-17 07:36:30','2018-06-17 07:36:30',NULL,0,0,1),(2,10,'Net 10','2018-06-17 07:36:30','2018-06-17 07:36:30',NULL,0,0,2),(3,14,'Net 14','2018-06-17 07:36:30','2018-06-17 07:36:30',NULL,0,0,3),(4,15,'Net 15','2018-06-17 07:36:30','2018-06-17 07:36:30',NULL,0,0,4),(5,30,'Net 30','2018-06-17 07:36:30','2018-06-17 07:36:30',NULL,0,0,5),(6,60,'Net 60','2018-06-17 07:36:30','2018-06-17 07:36:30',NULL,0,0,6),(7,90,'Net 90','2018-06-17 07:36:30','2018-06-17 07:36:30',NULL,0,0,7),(8,-1,'Net 0','2018-06-17 07:36:33','2018-06-17 07:36:33',NULL,0,0,0); +INSERT INTO `payment_terms` VALUES (1,7,'Net 7','2018-07-08 06:55:48','2018-07-08 06:55:48',NULL,0,0,1),(2,10,'Net 10','2018-07-08 06:55:48','2018-07-08 06:55:48',NULL,0,0,2),(3,14,'Net 14','2018-07-08 06:55:48','2018-07-08 06:55:48',NULL,0,0,3),(4,15,'Net 15','2018-07-08 06:55:48','2018-07-08 06:55:48',NULL,0,0,4),(5,30,'Net 30','2018-07-08 06:55:48','2018-07-08 06:55:48',NULL,0,0,5),(6,60,'Net 60','2018-07-08 06:55:48','2018-07-08 06:55:48',NULL,0,0,6),(7,90,'Net 90','2018-07-08 06:55:48','2018-07-08 06:55:48',NULL,0,0,7),(8,-1,'Net 0','2018-07-08 06:55:51','2018-07-08 06:55:51',NULL,0,0,0); /*!40000 ALTER TABLE `payment_terms` ENABLE KEYS */; UNLOCK TABLES; @@ -2291,7 +2293,7 @@ CREATE TABLE `proposal_templates` ( LOCK TABLES `proposal_templates` WRITE; /*!40000 ALTER TABLE `proposal_templates` DISABLE KEYS */; -INSERT INTO `proposal_templates` VALUES (1,NULL,NULL,'2018-06-17 07:36:33','2018-06-17 07:36:33',NULL,0,'','Clean','\n\n \n \n \n \n\n \n \n \n\n \n \n \n \n \n\n

Proposal #$quoteNumber

\n

New Business Proposal

\n

Valid Until $validUntil

\n
\n

Prepared for:

\n

$client.name

\n

\n $client.address1
\n $client.city, $client.state $client.postal_code\n

\n
\n

Prepared by:

\n

$account.name

\n

\n $account.address1
\n $account.city, $account.state $account.postal_code

\n
\n\n\n \n \n \n
\n

PROJECT DESCRIPTION:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.


\n
\n\n\n \n \n \n
\n
\n
\n\n\n \n \n \n \n
\n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n

GOAL:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n\n\n \n \n \n
\n \n

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce congue auctor magna id sodales. Maecenas mollis justo sed tempor facilisis. Ut malesuada in nibh ultrices auctor. Proin id maximus ipsum. Sed eu magna ac nisl sollicitudin porta in non augue. Mauris feugiat interdum aliquam. Aliquam ultrices interdum dolor.

\n
\n\n\n \n \n \n \n \n \n \n \n
\n \n \n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n \n \n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n\n\n \n \n \n\n \n \n \n \n\n \n \n \n\n
\n
\n
\n \n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n \n

GOAL:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n','body {\n font-family: \'Open Sans\', Helvetica, arial, sans-serif;\n color: #161616;\n}\n\n.grey-upper {\n font-size: 11px;\n letter-spacing: 3px;\n text-transform: uppercase;\n color: #9a9a9a;\n}\n\n.blue-upper {\n padding-bottom: 8px;\n font-size: 11px;\n letter-spacing: 3px;\n text-transform: uppercase;\n color: #37a3c6;\n margin: 0;\n}\n\np span.client {\n margin:5px 0px 0px 0px;\n}\n\nh1.cover-heading {\n font-size: 48px;\n line-height: 53px;\n text-transform: uppercase;\n font-weight: 100;\n letter-spacing: 3px;\n padding: 0 50px;\n}\n\nh3.client.name {\n padding: 0;\n margin: 0 0 -10px 0;\n font-size:18px;\n font-weight: 600;\n}\n\nspan.client.address1, span.client.city, span.client.state, span.client.postal-code {\n font-size: 14px;\n line-height: 18.5px;\n}\n\nh3.account.name {\n padding: 0;\n margin: 0 0 -10px 0;\n font-size:18px;\n font-weight: 600;\n}\n\nspan.account.address1, span.account.city, span.account.state, span.account.postal-code {\n font-size: 14px;\n line-height: 18.5px;\n}\n\n\n.heading,\n.card-title {\n font-size: 14px;\n letter-spacing: 3px;\n color: #37a3c6;\n font-weight: 600;\n}\n\n.card-text {\n font-size: 15px;\n line-height: 21px;\n}\n\na.button {\n background: #37a3c6;\n padding: 12px 25px;\n border-radius: 2px;\n color: #fff;\n text-transform: uppercase;\n font-size: 12px;\n text-decoration: none;\n letter-spacing: 3px;\n font-weight: 600;\n margin: 15px 0;\n}\n\na.button:hover {\n background: #161616;\n}\n\n/****** Table *****************************************/\n\n.grey-bg {\n background: #eeefef;\n}\n\n.card-content {\n padding: 20px;\n}\n\ntd {\n vertical-align: top;\n}\n\ntr.top-header {\n height: 350px;\n}\n\ntr.top-header td {\n padding: 80px 0 0 0;\n border-bottom: 1px solid #dddcdc;\n}\n\ntr.top-header h1.heading {\n margin: 0;\n}\n\ntr.top-header p {\n margin: 5px 0 0 0;\n}\n\n.proposal-info {\n height: 350px;\n}\n\n.proposal-info td {\n padding: 0 0 120px 0;\n}\n\ntr.block-quote {\n margin: 50px 0 ;\n}\n\ntr.block-quote td {\n background: #fbfbfb;\n font-style: italic;\n padding: 0 75px;\n font-size: 17px;\n line-height: 24px;\n padding: 80px 120px;\n color: #686766;\n border-top: 1px solid #dddcdc;\n border-bottom: 1px solid #dddcdc;\n}\n\ntr.footer td {\n background: #f0efef;\n font-size: 12px;\n letter-spacing: 3px;\n color: #8c8b8a;\n padding: 50px 0;\n text-transform: uppercase;\n}\n\n/****** Misc *****************************************/\n\n\nhr {\n border: 0;\n height: 1px;\n background: #dddada;\n}\n\n.footer img {\n vertical-align: middle;\n}\n',1); +INSERT INTO `proposal_templates` VALUES (1,NULL,NULL,'2018-07-08 06:55:51','2018-07-08 06:55:51',NULL,0,'','Clean','\n\n \n \n \n \n\n \n \n \n\n \n \n \n \n \n\n

Proposal #$quoteNumber

\n

New Business Proposal

\n

Valid Until $validUntil

\n
\n

Prepared for:

\n

$client.name

\n

\n $client.address1
\n $client.city, $client.state $client.postal_code\n

\n
\n

Prepared by:

\n

$account.name

\n

\n $account.address1
\n $account.city, $account.state $account.postal_code

\n
\n\n\n \n \n \n
\n

PROJECT DESCRIPTION:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.


\n
\n\n\n \n \n \n
\n
\n
\n\n\n \n \n \n \n
\n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n

GOAL:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n\n\n \n \n \n
\n \n

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce congue auctor magna id sodales. Maecenas mollis justo sed tempor facilisis. Ut malesuada in nibh ultrices auctor. Proin id maximus ipsum. Sed eu magna ac nisl sollicitudin porta in non augue. Mauris feugiat interdum aliquam. Aliquam ultrices interdum dolor.

\n
\n\n\n \n \n \n \n \n \n \n \n
\n \n \n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n \n \n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n\n\n \n \n \n\n \n \n \n \n\n \n \n \n\n
\n
\n
\n \n

OBJECTIVE:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n \n

GOAL:

\n

Koala Photography seeks a full review of their historical financial records and future accounting needs. At the start, our experts carefully review your past records and assess your financial services needs according to the nature of your company and suggest the services model best suited to your requirements. The work plan is finalized only after an initial (and possibly subsequent) extensive consultation with [Client.Company]. Periodic review of our services and client feedback is an essential feature of our work plan which ensures that we remain an efficient accounting partner for your business.

\n
\n','body {\n font-family: \'Open Sans\', Helvetica, arial, sans-serif;\n color: #161616;\n}\n\n.grey-upper {\n font-size: 11px;\n letter-spacing: 3px;\n text-transform: uppercase;\n color: #9a9a9a;\n}\n\n.blue-upper {\n padding-bottom: 8px;\n font-size: 11px;\n letter-spacing: 3px;\n text-transform: uppercase;\n color: #37a3c6;\n margin: 0;\n}\n\np span.client {\n margin:5px 0px 0px 0px;\n}\n\nh1.cover-heading {\n font-size: 48px;\n line-height: 53px;\n text-transform: uppercase;\n font-weight: 100;\n letter-spacing: 3px;\n padding: 0 50px;\n}\n\nh3.client.name {\n padding: 0;\n margin: 0 0 -10px 0;\n font-size:18px;\n font-weight: 600;\n}\n\nspan.client.address1, span.client.city, span.client.state, span.client.postal-code {\n font-size: 14px;\n line-height: 18.5px;\n}\n\nh3.account.name {\n padding: 0;\n margin: 0 0 -10px 0;\n font-size:18px;\n font-weight: 600;\n}\n\nspan.account.address1, span.account.city, span.account.state, span.account.postal-code {\n font-size: 14px;\n line-height: 18.5px;\n}\n\n\n.heading,\n.card-title {\n font-size: 14px;\n letter-spacing: 3px;\n color: #37a3c6;\n font-weight: 600;\n}\n\n.card-text {\n font-size: 15px;\n line-height: 21px;\n}\n\na.button {\n background: #37a3c6;\n padding: 12px 25px;\n border-radius: 2px;\n color: #fff;\n text-transform: uppercase;\n font-size: 12px;\n text-decoration: none;\n letter-spacing: 3px;\n font-weight: 600;\n margin: 15px 0;\n}\n\na.button:hover {\n background: #161616;\n}\n\n/****** Table *****************************************/\n\n.grey-bg {\n background: #eeefef;\n}\n\n.card-content {\n padding: 20px;\n}\n\ntd {\n vertical-align: top;\n}\n\ntr.top-header {\n height: 350px;\n}\n\ntr.top-header td {\n padding: 80px 0 0 0;\n border-bottom: 1px solid #dddcdc;\n}\n\ntr.top-header h1.heading {\n margin: 0;\n}\n\ntr.top-header p {\n margin: 5px 0 0 0;\n}\n\n.proposal-info {\n height: 350px;\n}\n\n.proposal-info td {\n padding: 0 0 120px 0;\n}\n\ntr.block-quote {\n margin: 50px 0 ;\n}\n\ntr.block-quote td {\n background: #fbfbfb;\n font-style: italic;\n padding: 0 75px;\n font-size: 17px;\n line-height: 24px;\n padding: 80px 120px;\n color: #686766;\n border-top: 1px solid #dddcdc;\n border-bottom: 1px solid #dddcdc;\n}\n\ntr.footer td {\n background: #f0efef;\n font-size: 12px;\n letter-spacing: 3px;\n color: #8c8b8a;\n padding: 50px 0;\n text-transform: uppercase;\n}\n\n/****** Misc *****************************************/\n\n\nhr {\n border: 0;\n height: 1px;\n background: #dddada;\n}\n\n.footer img {\n vertical-align: middle;\n}\n',1); /*!40000 ALTER TABLE `proposal_templates` ENABLE KEYS */; UNLOCK TABLES; @@ -2882,4 +2884,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2018-06-17 13:36:34 +-- Dump completed on 2018-07-08 12:55:52