This commit is contained in:
parent
a2566247fa
commit
27406c0d07
@ -1 +1 @@
|
|||||||
3b3a4e535d5d23a7ef8d6ec6fd65f022a60f3105-372bcf506971f56c4911b429b9f5de5bc37ed008-e9eccd451b778829eb2f2c9752c670b707e1268b
|
7c46c8ec5c152d2e7e9efeea1057bb2f22b47d45-372bcf506971f56c4911b429b9f5de5bc37ed008-e9eccd451b778829eb2f2c9752c670b707e1268b
|
||||||
|
@ -257,3 +257,12 @@ ALTER TABLE user_profile
|
|||||||
ADD COLUMN sms_reminders_opt_in TINYINT(1) NOT NULL DEFAULT 0,
|
ADD COLUMN sms_reminders_opt_in TINYINT(1) NOT NULL DEFAULT 0,
|
||||||
ADD COLUMN sms_reminders_opt_in_at DATETIME NULL;
|
ADD COLUMN sms_reminders_opt_in_at DATETIME NULL;
|
||||||
|
|
||||||
|
|
||||||
|
-- 005_alter_career_profiles__attach_resume.sql
|
||||||
|
|
||||||
|
ALTER TABLE career_profiles
|
||||||
|
ADD COLUMN resume_storage_key VARCHAR(255) NULL AFTER career_goals,
|
||||||
|
ADD COLUMN resume_filename VARCHAR(160) NULL AFTER resume_storage_key,
|
||||||
|
ADD COLUMN resume_filesize INT UNSIGNED NULL AFTER resume_filename,
|
||||||
|
ADD COLUMN resume_uploaded_at DATETIME NULL AFTER resume_filesize;
|
||||||
|
|
||||||
|
BIN
public/Aptiva A.png
Normal file
BIN
public/Aptiva A.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 978 KiB |
@ -2,14 +2,14 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
<link rel="icon" href="%PUBLIC_URL%/Aptiva%20A.png" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="Web site created using create-react-app"
|
content="Web site created using create-react-app"
|
||||||
/>
|
/>
|
||||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/Aptiva%20A.png" />
|
||||||
<!--
|
<!--
|
||||||
manifest.json provides metadata used when your web app is installed on a
|
manifest.json provides metadata used when your web app is installed on a
|
||||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||||
@ -24,7 +24,7 @@
|
|||||||
work correctly both with client-side routing and a non-root public URL.
|
work correctly both with client-side routing and a non-root public URL.
|
||||||
Learn how to configure a non-root public URL by running `npm run build`.
|
Learn how to configure a non-root public URL by running `npm run build`.
|
||||||
-->
|
-->
|
||||||
<title>React App</title>
|
<title>AptivaAI - Career Guidance & Planning</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
|
Loading…
Reference in New Issue
Block a user