added template data
This commit is contained in:
+74
-1
@@ -158,15 +158,76 @@ A Professional Website service utilizing AI tools offers a comprehensive solutio
|
||||
|
||||
8. **Maintenance and Support**: Many services offer ongoing support and automatic updates using AI to monitor site performance, ensuring that the website runs smoothly and is protected against threats. By leveraging these AI tools, the Professional Website service can deliver not only visually appealing and functional websites but also enhance user engagement, improve operational efficiency, and drive growth for businesses.
|
||||
'
|
||||
);details
|
||||
|
||||
INSERT INTO products_details (product_id,details) VALUES ('A000002','
|
||||
<p>Elevate your online presence with a professional website service powered by cutting-edge AI tools. This all-inclusive solution empowers individuals and businesses to create a dynamic and impactful digital footprint. Key features of this service include powerful content generation, strategic SEO optimization, insightful analytics, personalized experiences, and much more.
|
||||
</p><p>
|
||||
Experience the transformative potential of a robust online platform that drives engagement and success!</p>'
|
||||
);
|
||||
|
||||
INSERT INTO products_details (product_id,details) VALUES ('A000001', '
|
||||
<p>Establishing a powerful online presence is crucial in todays digital landscape. Our platform empowers you to effortlessly organize and manage every aspect of your website.
|
||||
</p><p>
|
||||
With our cutting-edge features, you will benefit from advanced SEO optimization that drives traffic, comprehensive analytics that provide valuable insights, and tailored experiences that engage your audience like never before.
|
||||
</p><p>
|
||||
Transform your online presence with us and unlock your full potential!</p>');
|
||||
|
||||
INSERT INTO products_details (product_id,details) VALUES ('A000003', '
|
||||
<p>Unlock your potential with your personalized sharing forum. We handle the platform management, allowing you to focus on impactful outreach and communication. Utilize our powerful tools to significantly expand your audience and amplify your message.
|
||||
</p><p>
|
||||
We are here to support you every step of the way in achieving your goals.</p>');
|
||||
|
||||
|
||||
INSERT INTO products_details (product_id,details) VALUES ('A000004', '
|
||||
<p>Elevate your business online presence by launching an engaging forum where you can exchange ideas and information with your users. This forum will not only foster meaningful interactions but also serve as a vital point of connection for your clients.
|
||||
</p><p>
|
||||
We partner with you to implement automated engagements, streamline appointments, create valuable links, and much more, ensuring a seamless experience that drives your success.</p>');
|
||||
|
||||
INSERT INTO products_details (product_id,details) VALUES ('A000005', '
|
||||
<p><b>OpenEMR</b> is the most popular open source electronic health records and medical practice management solution. OpenEMR is a community of passionate volunteers and contributors dedicated to guarding OpenEMR status as a free, open source software solution for medical practices with a commitment to openness, kindness and cooperation.
|
||||
</p><p>
|
||||
Activate to deploy OpenEMR for your practice
|
||||
</p><p>
|
||||
URL: https://www.open-emr.org/ </p>');
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
UPDATE products_details SET details = '
|
||||
<p>Elevate your online presence with a professional website service powered by cutting-edge AI tools. This all-inclusive solution empowers individuals and businesses to create a dynamic and impactful digital footprint. ' ||
|
||||
'
|
||||
Experience the transformative potential of a robust online platform that drives engagement and success!</p>'
|
||||
WHERE product_id = 'A000002';
|
||||
|
||||
|
||||
|
||||
|
||||
INSERT INTO products_details (product_id,details) VALUES(
|
||||
'A000001',
|
||||
'
|
||||
A Professional Website service utilizing AI tools offers a comprehensive solution for individuals and businesses looking to establish a robust online presence. Here are some key features typically included in such a service'
|
||||
);
|
||||
|
||||
|
||||
UPDATE products_details SET sale_text =
|
||||
'<br>
|
||||
<hr>
|
||||
Get started for free for 6 months, and add features to your product as needed. cancel anytime
|
||||
Start free for 6 months, and customize your product with additional features as you see fit. You''re in control-you can cancel anytime.
|
||||
<hr>
|
||||
<br>';
|
||||
|
||||
merms_panel=# select product_id,description from products;
|
||||
product_id | description
|
||||
------------+----------------------------------------------
|
||||
A000002 | Your healthcare practice online presence
|
||||
A000001 | Your personal professional web presence
|
||||
A000003 | Blog to share your health care view
|
||||
A000004 | Booster your practice with engaging contents
|
||||
A000005 | Get Open EMR for practice management
|
||||
(5 rows)
|
||||
|
||||
|
||||
|
||||
CREATE TABLE members_products (
|
||||
@@ -339,6 +400,18 @@ CREATE TABLE subscription_options_items (
|
||||
ADD CONSTRAINT subscription_options_items_id_key UNIQUE (id);
|
||||
|
||||
|
||||
CREATE TABLE payments (
|
||||
id SERIAL,
|
||||
uid uuid DEFAULT uuid_generate_v4(),
|
||||
option_name VARCHAR(100) REFERENCES subscription_options(option_name),
|
||||
description VARCHAR(100) NOT NULL,
|
||||
list_order INT DEFAULT 0,
|
||||
status INT DEFAULT 1,
|
||||
added timestamp without time zone DEFAULT now()
|
||||
);
|
||||
ALTER TABLE ONLY payments
|
||||
ADD CONSTRAINT payments_id_key UNIQUE (id);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user