forked from michaelchen523/allianceDatabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.sql
1936 lines (1711 loc) · 51 KB
/
data.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DELETE FROM Category_Names;
DELETE FROM Categories;
DELETE FROM Supp_Type;
DELETE FROM Supplies;
DELETE FROM For_Child;
DELETE FROM For_Children;
DELETE FROM Net_Sub;
DELETE FROM Net_Mem;
DELETE FROM Networks;
DELETE FROM Mentor_Type;
DELETE FROM Mentors;
DELETE FROM Transportation;
DELETE FROM Med_Type;
DELETE FROM Medical;
DELETE FROM Supplies;
DELETE FROM Supp_Type;
DELETE FROM Leg_Type;
DELETE FROM Legal;
DELETE FROM Mental_Type;
DELETE FROM Mental_Health;
DELETE FROM Emp_Skills;
DELETE FROM Emp_Type;
DELETE FROM Employment;
DELETE FROM Job_Readiness_Type;
DELETE FROM Job_Readiness;
DELETE FROM Education_Type;
DELETE FROM Education;
DELETE FROM Life_Skill_Type;
DELETE FROM Life_Skills;
DELETE FROM Child_Type;
DELETE FROM Childcare;
DELETE FROM Housing_Serve;
DELETE FROM Housing_Type;
DELETE FROM Housing;
DELETE FROM Vehicle_Type;
DELETE FROM Vehicle;
DELETE FROM Phone_Numbers;
DELETE FROM Resource;
INSERT INTO Resource (
Name,
Creator_Username,
Address_State,
Address_City,
Address_Zip,
Address_Street,
Address_Number,
Website,
Documentation,
Eligibility,
Description,
ID
) VALUES
('Families First, Inc.: Resource Moms',
'SonikaF',
'GA',
'Atlanta',
30314,
'Joseph E. Lowery Boulevard, NW',
80,
'www.familiesfirst.org',
0,
'In all of Georgia',
'Provides resources and information to new mothers with a low-birth weight baby',
3),
('Wellspring Living: Empowering Living Academy',
'SonikaF',
'GA',
'Atlanta',
30342,
'Johnson Ferry Rd Suite 140-331',
860,
'www.wellspringliving.org',
0,
'Women 18-31 years old, no violent criminal charges, medically stable, no substance abuse, access to transportation, willingness to live a drug and
alcohol free lifestyle, no history of sexual offending behavior, committed to empowered living curriculum and schedule',
'9 week program (9am-3:40pm,5 days a week) that provides GED preparation, life skills classes, health and fitness classes, career readiness
training, opportunities for jobs, and individual and group therapy',
4),
('Fulton Atlanta Community Action Authority: Academy 4 Life',
'SonikaF',
'GA',
'Atlanta',
30324,
'Chantilly Dr, NE',
1690,
'www.facaa.org',
0,
'Must register or complete an online application',
'Provides support with life and career skills, provide educational, social, and economic opportunities, topics include: money management,
computer skills, entreprenurial help, GED preparation, life enhancement, construction skills training, and job preparedness',
5),
('Salvation Army Kroc Center: Family Literacy Program',
'SonikaF',
'GA',
'Atlanta',
30310,
'Dewey St, SW',
967,
'www.kroccenteratlanta.org/programs/family-literacy',
0,
'Complete application and admissions testing',
'Provides GED preparation Monday to Friday from 5-8pm and provides dinner and childcare',
6),
('Wellspring Living: Assessment Center',
'SonikaF',
'GA',
'Atlanta',
30342,
'Johnson Ferry Rd Suite 140-331',
860,
'www.wellspringliving.org',
0,
'Women 18-30 years old',
'Provides short-term residential care for survivors of sexual exploitation and sexual abuse and education about options',
11),
('Wellspring Living:Wellspring Living for Girls',
'SonikaF',
'GA',
'Atlanta',
30342,
'Johnson Ferry Rd Suite 140-331',
860,
'www.wellspringliving.org',
0,
'Girls 12-17 years old',
'Provides housing and support for survivors of Domestic Minor Sex Trafficking with a focus on trauma therapy, education, life skills, and confidence',
12),
('Atlanta Mission: My Sister"s House',
'SonikaF',
'GA',
'Atlanta',
303118,
'Howell Mill Rd',
921,
'www.atlantamission.org',
0,
'Over the age of 18 years old unless accompanied by a legal guardian, agree to all guidelines and program activities, be fully detoxifiedand have
at least 72 hours since last drug or alcohol use, able to exercise proper personal hygiene and self-care, and complete an application',
'Provides overnight shelter for women and child including food, counselors, referrals to job training programs, assistance in obtaining housing,
medical and legal resources, and a childcare facilitiy with a behavioralspecialist and social workers',
13),
('Atlanta Mission: Fuqua Hall',
'SonikaF',
'GA',
'Atlanta',
30313,
'Mills Street',
156,
'www.atlantamission.org',
0,
'Over the age of 18 years old unless accompanied by a legal guardian, agree to all guidelines and program activities, be fully detoxified and have
at least 72 hours since last drug or alcohol use, able to exercise proper personal hygiene and self-care, and complete an application',
'Emergency shelter, temporary shelter, and residential recovery',
17),
('Action Ministries',
'SonikaF',
'GA',
'Atlanta',
30308,
'Ponce de Leon Avenue',
458,
'www.actionministries.net',
0,
'Must be homeless with children',
'Provides transitional housing to homeless families with children and casae management services, including providing a case manager, employment help
and school related help for children ie tutoring',
18),
('Covenant House',
'SonikaF',
'GA',
'Atlanta',
30318,
'Johnson Road NW',
1559,
'www.covenanthousega.org',
0,
'Homeless youth ages 18-21 years old',
'Provides crisis shelter (with mental healthand substance abuse assessment and treatment, medical attention, help with educational and vocational
needs), indpendent living facilities for up to two years, educational services, job services, health and wellness, lide skills development, and
mental health services including individual, group, experiential, and pastoral counseling',
19),
('HOPE Atlanta: Transitional Housing Program',
'SonikaF',
'GA',
'Atlanta',
30303,
'Marietta St Suite 400',
75,
'www.hopeatlanta.org',
0,
'Households with children, provides services up to 18-24 months, in Cobb, DeKalb, Gwinnett, Fulton, and Douglas', 'Provides housing, case management,
and other supportive services',
27),
('The Garden: 7 Bridges to Recovery',
'SonikaF',
'GA',
'Smyrna',
30080,
'Plant Atkinson Rd',
2840,
'www.7bridgestorecovery.org',
0,
'Phone intake, agree to rules, children are welcome (boys must be 13 or younger), cannot leave shelter for first 30 days but can stay as long as
the individual wants to, no fees, must surrender to God', 'Short term shelter. Email: [email protected]',
31),
('Atlanta Mission: The Shepherd"s Inn',
'SonikaF',
'GA',
'Atlanta',
30313,
'Ivan Allen Blvd NW',
165,
'www.atlantamission.org',
0,
'Over the age of 18 years old unless accompanied by a legal guardian, agree to all guidelines and program activities, be fully detoxified and
have at least 72 hours since last drug or alcohol use, able to exercise proper personal hygiene and self-care, and complete an application',
'Provides overnight shelter and food, helps find and secure a job, find transitional housing, and assistance finding a recovery program if needed',
32),
('Young Adult Guidance Center',
'SonikaF',
'GA',
'Atlanta',
30318,
'Hightower Rd NW',
1230,
'www.yagc.net',
0,
'13 to 26 year old male, must complete an interview, and obtain approval by a case manager', 'Provides a crisis intervention and emergency
shelter for male runaways and homeless youth; services include mentoring, individual and group counseling, experiential therapy, health and
wellness, life skill development, and educational and job services',
33),
('Atlanta Care for Self Sufficiency (ACSS)',
'SonikaF',
'GA',
'Atlanta',
30339,
'Edgewood Ave NE #700',
100,
'www.atlantacss.org',
0,
'homeless, ex-offenders, and unemployed individuals',
'Providese employment services and course, career counseling, and mental health support groups',
35),
('Mary Hall Freedom House',
'SonikaF',
'GA',
'Atlanta',
31150,
'PO Box',
501205,
'www.maryhallfreedomhouse.org',
0,
'For second set of services: women only, must recognize that alcohol/drug abuse is a problem, be drug free upon admittance (testing required),
must be 18 years or older, must have had a tuberculosis and syphilis test completed in the past 6 months (documentation required), have two
weeks of medication upon entry (documentation for mental disorders required), must meet DSM criteria for substance dependence, meet physical
requirements, and compelte an application',
'Monday-Sunday 7:30am-6pm; Provides up to two-year transitional housing to homeless veteran women and women with children. Also provides
outpatient, day, residential, and intensive outpatient treatment for women struggling with addiction, each program provides a treatment plan and
treats clients with co-existing dependence and mental health disorders.',
34),
('Atlanta Public Schools',
'SonikaF',
'GA',
'Atlanta',
30316,
'Mary Dell Dr, SE',
1757,
'www.atlantapublicschools.us/adulteducation',
1,
'Live in Atlanta in Fulton County, 18 years or older, attend orientation session, complete enrollment information and assessment test',
'Provides free academic services and GED preparation',
70),
('Atlanta Workforce Development Agency (AWDA): GED',
'SonikaF',
'GA',
'Atlanta',
30315,
'Pollard Blvd, SW',
818,
'www.atlantaga.gov/AWDA',
0,
'Aged 16-17 or 18 and older',
'Provides GED instruction including reading, writing, and math onsite once a week; Fees: none',
71),
('YES Georgia',
'SonikaF',
'GA',
'Atlanta',
30303,
'Edgewood Ave, Suite 1030',
100,
'www.yesgeorgia.com [email protected]',
1,
'Must have 8th greade minimum reading and math level, 16-23 years old, attend new student orientation on the first Monday of every month, have
legal ID',
'Provides community based GED program for at-risk youth and individuals who have dropped out of high school, individualized assessment and
lesson planning',
72),
('Job Corps (US Dept of Labor)',
'SonikaF',
'GA',
'Atlanta',
30314,
'West Lake Ave, NW',
239,
'www.atlanta.jobcorps.gov',
0,
'Pass income requirements',
'Provides education and training for 16 to 24 year olds including a GED program, online high school diploma program, advanced career training to
help students enter community and technical colleges',
73),
('Serenity House of Atlanta Ministries, Inc.',
'SonikaF',
'GA',
'Atlanta',
30310,
'Confidential Address',
00,
'www.serenityhouseatl.org',
0,
'Complete phone intake for battered, ex-offender, or homeless women', 'Provides transitional housing for battered, ex-offencer, and homeless women,
minimum stay is 3 months; Fees: sliding scale',
15),
('Buckhead Christian Ministry, Inc',
'SonikaF',
'GA',
'Atlanta',
30305,
'Piedmont Rd, NE, The Murray Building',
2847,
'www.buckheadchristianministry.org',
1,
'Proof of address, picture ID, social security card for yourself and all other adults and children living with you',
'Provides emergency financial assistance to forestall eviction and utility shut-offs to those who have experienced illness, death in
family or job loss; also provides pantry items, support for new workers and thrift store items',
74),
('Atlanta Mission: Clifton Sanctuary Ministries, Inc.',
'SonikaF',
'GA',
'Atlanta',
30307,
'Connecticut Avenue, NE',
369,
'www.cliftonsanctuary.com',
1,
'Homeless, HIV+ or disabled, over the age of 35, must provide medical or psychiatric records, declaration letter of homelessness from HUD or
referring case manager',
'Provides services for men who are homeless including emergency shelter, case management, support groups, counseling, health and wellness program,
computer training classes, and a transitional living facility',
75),
('Atlanta Workforce Development Agency (AWDA): Job Assistance',
'SonikaF',
'GA',
'Atlanta',
30315,
'Pollard Blvd, SW',
818,
'www.atlantaga.gov/AWDA',
1,
'Must have been recently laid off, proof of residence, and employment history',
'Provides job assisstance and training, GED instruction, job readiness and interview skills, computer skills, and job leads',
78),
('Center for Working Families, Inc.',
'SonikaF',
'GA',
'Atlanta',
30312,
'Windsor St #101',
477,
'www.tcwfi.org',
1,
'Live in 30310, 30312, or 30315, need photo ID, social security card, and attend employment bootcamp',
'Provides employment services, job development, curriculum, computer training (Microsoft Office), and financial workshops',
79),
('Integrity Transformations Community Development Corporation',
'SonikaF',
'GA',
'Atlanta',
30318,
'Lindsey St',
692,
'www.integritycdc.com',
1,
'Live in the English Ave/Vine City, complete application, driver"s license',
'Provides job readiness training and job placement in construction, maintenance, and operation jobs nearby in the English Avenue area, computer
classes, and computer lab',
80),
('Second Chance International Ministries, Inc.',
'SonikaF',
'GA',
'College Park',
30337,
'Old National Hwy',
4848,
'www.secondchanceintl.org',
1,
'Over 18 years of age, ex-offenders, survivors of domestic violence, homeless veterans, complete application, picture ID',
'Provides resources to ex-offenders, survivors of domestic violence, those affected by substance abuse including anger management classes,
job preparedness workshop (every fourth Saturday from 3-4pm), and provides professional attire for ex-offenders',
81),
('Hosea Williams Feed the Hungry and Homeless',
'SonikaF',
'GA',
'Atlanta',
30310,
'Donnelly Ave, SW',
1035,
'www.hoseafeedthehungry.com',
1,
'Must provide picture ID, driver"s license, and social security card for each household member', 'Provides clothing and personal/grooming supplies
and food for those in need',
82),
('Southwest Ecumenical Emergency Assistance Center, Inc. (SWEEAC)',
'SonikaF',
'GA',
'Atlanta',
30310,
'Ralph David Abernathy Blvd, SW',
1040,
'www.sweeac.org',
1,
'Live in SW Atlanta (30310, 30311, 30331), complete an application form, picture ID, proof of residence',
'Provides a food pantry, clothing closest, job assistance, counseling, hearing/vision aids, and food stamps applications',
83);
INSERT INTO Resource (
Name,
Creator_Username,
Address_State,
Address_City,
Address_Zip,
Address_Street,
Address_Number,
Eligibility,
Description,
ID
) VALUES
('Atlanta Legal Aid Society, Inc.',
'SonikaF',
'GA',
'Atlanta',
30303,
'Spring St, NW',
151,
'Live in Cobb, DeKalb, Fulton, South Fulton/Clayton, and Gwinnett',
'Provides legal aid for civil (non-criminal) matters',
38),
('Atlanta Volunteer Lawyers Foundation, Inc.',
'SonikaF',
'GA',
'Atlanta',
30303,
'Peachtree St NE, Suite 1750',
235,
'Complete and pass the financial and geographical eligibility, those rejected are given alternative resources',
'Provides pro-bono legal assistance for domestic violence, landlord/tenant disputes, eviction, unpaid wages, consumer debt, and probate issues',
39),
('Community Court for Fulton Industrial Boulevard Area',
'SonikaF',
'GA',
'Atlanta',
30336,
'Fulton Industrial Boulevard, Suite B',
5500,
'Must live in the Fulton Industrial Boulevard area',
'Provides referrals and support to community members and assitance for those who have committed a variety of crimes',
40),
('Catholic Charities',
'SonikaF',
'GA',
'Chamblee',
30341,
'North Peachtree Rd',
3669,
'Must be pregnant or have a child 2 or younger, live within Fulton, DeKalb, Cobb, Douglas, or Gwinnett county',
'Provides services in home and includes assistnace with goal setting, free baby supplies, counseling services, information and referral,
case management, assessments and child development screenings',
42),
('Atlanta Mission: The Potter"s House',
'SonikaF',
'GA',
'Jefferson',
30549,
'Potter House Rd',
655,
'Over the age of 18 years old unless accompanied by a legal guardian, agree to all guidelines and program activities, be fully detoxified and
have at least 72 hours since last drug or alcohol use, able to exercise proper personal hygiene and self-care, and complete an application',
'Provides residential recovery and transitional housing for chemically addicted men',
50),
('Families First, Inc: Doula',
'SonikaF',
'GA',
'Atlanta',
30357,
'W. Peachtree St, NE',
1105,
'In DeKalb and Fulton counties',
'Provides emotional and physical support for young pregnant women through her pregnancy and after',
51),
('Families First, Inc: TAPP',
'SonikaF',
'GA',
'Atlanta',
30357,
'W. Peachtree St, NE',
1105,
'In Cobb and Fulton counties',
'Provides case management and counseling for pregnant teenagers and services (ie school visitation, service coordination, and parent education',
52),
('Crime Victims Advocacy Council',
'SonikaF',
'GA',
'Atlanta',
30339,
'Paces Mill Rd, SE',
3101,
'Must be a crime victime or the victim"s family',
'Provides crisis intervention, support groups for victims of any crime, assistance in filing victim"s compensation, education regarding the criminal
justice system, and information and appropriate referrals',
60),
('HOPE Atlanta: Veteran Services',
'SonikaF',
'GA',
'Atlanta',
30303,
'Marietta St, Suite 400',
75,
'Low or low income, residing in or transitioning to permanent housing in Atlanta, Fulton, DeKalb, Cobb or Douglas counties',
'Provides services for rapid re-housing and prevention assistance to veterans and veteran families',
63),
('Georgia Center for Child Advocacy',
'SonikaF',
'GA',
'Atlanta',
30316,
'Woodland Ave, SE',
1485,
'Children abused in or reside in DeKalb or Fulton county',
'No fees and provides services for sexually and severely physically abused children focusing on prevention, intervention, and therapy. Provides
forensic interviewing, forensic evaluations, therapy, and family advocacy services',
64),
('Cascade Community Services, Inc.',
'SonikaF',
'GA',
'Atlanta',
30311,
'Cascade Rd, SW',
3144,
'Must be a resident in the area',
'Provides baby, children, general, professional, and plus size clothing and financial assistance for gas, electric, mortgage, rent, and water
services payment',
66),
('Fulton Atlanta Community Action Authority: Financial Assistance',
'SonikaF',
'GA',
'Atlanta',
30324,
'Chantilly Dr, NE',
1690,
'Must attend the financial planning classes (on Saturdays) and counseling before considered',
'Provides financial assistance',
67);
INSERT INTO Resource (
Name,
Creator_Username,
Address_State,
Address_City,
Address_Zip,
Address_Street,
Address_Number,
Documentation,
Eligibility,
Description,
ID
) VALUES
('Atlanta Dream Center, Inc.',
'SonikaF',
'GA',
'Atlanta',
30308,
'Angier Ave, NE',
635,
0,
'Live in the areas they serve',
'Provides after school program including tutoring and one-on-one mentoring',
2),
('Beloved',
'SonikaF',
'GA',
'Atlanta',
30307,
'Caroline St, Suite D120-426',
1270,
0,
'Complete an application and intake process',
'Provides 12-24 residential housing to women 18+ who have been involved in prostitution, trafficking, and addiction in Atlanta',
1),
('Out of Darkness/Soloman"s House',
'SonikaF',
'GA',
'Atlanta',
00000,
'NA',
00,
0,
'At least 18 years old and has been commercially sexually exploited and wantto join a 12-15 month program',
'Helps those who are survivors of sex trafficking by rescuing women, placing them in a safe house and given medical care, mentoring and placing
her into a 12 month restoration program',
10),
('Partnership Against Domestic Violence/PADV',
'SonikaF',
'GA',
'Atlanta',
30317,
'PO Box',
170225,
0,
'Must complete phone call process, no age limit, female only, but children are welcome',
'Provides 24-hour crisis line, emergency safe housing, parenting services, supportive housing program, legal advocacy, community support groups
for women, and public benefits assistance',
14),
('Atlanta Children"s Shelter, Inc.',
'SonikaF',
'GA',
'Atlanta',
30308,
'Confidential Address',
00,
1,
'Must call to schedule an intake and bring current shelter letter on agency letterhead, immunization records for each child, birth
certificate, a social security card for each parent and child, and a state ID/driver"s license for parent',
'Services include shelter for homeless children and families, enrichment programs, early childhooh nutrition program, health and
wellness program, case management, employment help, and housing help',
76),
('Eden Village: City of Refuge',
'SonikaF',
'GA',
'Atlanta',
30314,
'Joseph E. Boone Blvd',
1300,
0,
'Children are welcome',
'Provides emergency night shelter for homeless women offering 30 and 120 days of support, other services including case management,
food service, daycare/preschool, after school tutoring for children, GED preparation, medical care, job readiness training and placement,
and transition into permanent housing',
20),
('iAM, Atlanta Dream Center',
'SonikaF',
'GA',
'Atlanta',
30308,
'Angier Ave NE',
652,
0,
'Currently homeless',
'Provides support for those who are homeless and addicted by placing men into an emergency shelter, provide case management, and are then
placed into a 12 month restoration program',
28),
('Salvation Army',
'SonikaF',
'GA',
'Atlanta',
30313,
'Luckie St, NW',
400,
1,
'Must call at 7am the day of needed assistance, bring picture ID/driver license, social security card, TB test, homeless letter, proof of
income or letter from unemployment office',
'Provides emergency shelter for men, women, and families and provides fnancial and distaster office',
77);
INSERT INTO Resource (
Name,
Creator_Username,
Address_State,
Address_City,
Address_Zip,
Address_Street,
Address_Number,
Website,
Documentation,
Description,
ID
) VALUES
('Atlanta-Fulton Public Library System',
'SonikaF',
'GA',
'Atlanta',
30303,
'Margaret Mitchell Square, NW',
1,
'www.afpls.org/afplsservices/learning-career-center',
1,
'Centrary Library, 4th floor: Provides introductory computer classes (including the
basics, word, and related programs and the Internet) and GED study materials and classes',
69),
('Atlanta Mission: Atlanta Day Shelter for Women and Children',
'SonikaF',
'GA',
'Atlanta',
30318,
'Ethel St',
655,
'www.atlantamission.org',
0,
'Provides job readiness programs, education stipends, medical care, computer training, early education and teen programs, critical needs
services, and mental health counseling',
7),
('Urban League of Greater Altanta: Education and Job Skills Training',
'SonikaF',
'GA',
'Atlanta',
30303,
'Peachtree St, NW #300',
229,
'www.ulgatl.com',
0,
'GED Prep/Academic Upgrade: self-paced instruction in reading, math, science, and social studies; Microsoft Office Certification: a 16 week
course designed to provide basic computer skills and certify participants as Microsoft Office Specialists; Connect to Work: an 8-weeek course
covering call-center and customer service training; Banking and Financial Services Training Program: a 12-week introductory course to banking and
financial services; Financial Literacy and Wealth Creation Workshops; Homeownership Counseling and Education Programs',
8),
('Women"s Resouce Center', 'SonikaF', 'GA', 'Decatur', 30031, 'PO Box', 171, 'www.wrcdv.org', 0, 'Provides temporary housing for women and children,
24-hour domestic and dating violence hotline, legal advocacy, consultations with volunteer attorneys, domestic violence support groups, financial
strategies program, community-based child and family advocacy, Camp PEACE, and provides a supervised visitation facility', 16),
('HOPE Atlanta: Emergency Shelter Hotel/Motel Program', 'SonikaF', 'GA', 'Atlanta', 30303, 'Marietta Street, Suite 400', 75, 'www.hopeatlanta.org',
0, 'Provides emergency housing for homeless families when there are no other available spaces in emergency shelters or no appropriate shelter', 21),
('HOPE Atlanta: First Month"s Rent Program', 'SonikaF', 'GA', 'Atlanta', 30303, 'Marietta St, Suite 400', 75, 'www.hopeatlanta.org', 0, 'Provides
help for homeless families wanting to acquire permanent housing including assistance with security deposits and utilities charges and case
management support', 22),
('HOPE Atlanta: Homeless Prevention Program',
'SonikaF',
'GA',
'Atlanta',
30303,
'Marietta St, Suite 400',
75,
'www.hopeatlanta.org',
0,
'Provides services to prevent eviction and homelessness including case management, crisis counseling, information and referral employment
assistanc, and financial assistance',
23),
('HOPE Atlanta: PATH Program', 'SonikaF', 'GA', 'Atlanta', 30303, 'Marietta St Suite 400', 75, 'www.hopeatlanta.org', 0, 'Helps those not in a shelter
by engaging them in their current locations, ensuring their basic needs are being met, helping find housing, and providing case management', 24),
('HOPE Atlanta: Reunification Program',
'SonikaF',
'GA',
'Atlanta',
30303,
'Marietta St Suite 400',
75,
'www.hopeatlanta.org',
0,
'Provides assistance to homeless residents and stranded individuals who are in need of transporation to return to their home communities',
25),
('HOPE Atlanta: Supportive Housing Program', 'SonikaF', 'GA', 'Atlanta', 30303, 'Marietta St Suite 400', 75, 'www.hopeatlanta.org', 0, 'Provides
permanent housing for special needs, chronically homeless women, and homeless women with children, and provides case management', 26),
('Atlanta Day Shelter for Women and Children', 'SonikaF', 'GA', 'Atlanta', 30318, 'Ethel Street NW', 655, 'www.atlantadayshelter.org', 0, 'Provides
emergency shelter for women and children, offers job readiness programs, medical care, computer training, child care, meals, clothing,
transportation, and mental health counseling', 30);
INSERT INTO Resource (
Name,
Creator_Username,
Address_State,
Address_City,
Address_Zip,
Address_Street,
Address_Number,
Description,
ID
) VALUES
('Urban Leage of Greater Atlanta: Job Assistance',
'SonikaF',
'GA',
'Atlanta',
30303,
'Peachtree St NW #300',
229,
'Step up to Work: 8 week job readiness and job replacement program including customer service, entrepreneur, and computer skills
training; Think UP!: career development program for workers looking for a new career path; Transitional Program: offers life skills,
job readiness, job referrals, and placement and supportive services; Training 2 Work: reentry program; New Beginnings: ex-offenders',
36),
('Urban League of Greater Atlanta: Prep for Young People',
'SonikaF',
'GA',
'Atlanta',
30303,
'Peachtree St NW #300',
229,
'Project Ready: supports high school students as they transition from high school to college through tutoring, mentoring, career
exploration workshops, college readiness programs, and more; YouthBuild: ages 16-24, training for construction work; Neighborhood College
Prep: ages 14-24 and currently involved in the juvenile justice system and reside in Metro Atlanta',
37),
('Atlanta Victim Assistance, Inc.', 'SonikaF', 'GA', 'Atlanta', 30303, 'Garnett St', 150, ' Provides support for feeling safe at home and in your
neighborhood, identity theft, domestic violence, loss of a loved one to homicide, or support for a crime that has left a financial or medical gap
(includes parenting, general, financial)', 41),
('Buckhead Christian Ministry, Inc.', 'SonikaF', 'GA', 'Atlanta', 30305, 'Piedmont Rd NE, The Murray Building', 2847, 'Provides a 20 week educational
program for families to develop skills and strategies for budgeting their household financies and providing volunteer coaching', 43),
('Urban League of Greater Atlanta: Financial Literacy', 'SonikaF', 'GA', 'Atlanta', 30303, 'Peachtree St NW #300', 229, 'Financial Literacy and Wealth
Creation Workshops: offer services to youth and adults to help budget household expenses, save invent, and create and maintain wealth; Homeownership
Counseling and Education Programs: offers free monthly Homebuyer Education Workshops, counseling, mortgage readiness, and other support', 44),
('24/7 Gateway Center', 'SonikaF', 'GA', 'Atlanta', 30303, 'Pryor St, SW', 275, 'Provides a drop in center, clothing closet, shower, laundry
facilities, on-site primary care medical clinic, and transitional shelter for men', 45),
('Community Advanced Practice Nurses, Inc.', 'SonikaF', 'GA', 'Atlanta', 30308, 'Ponce de Leon Ave, NE', 458, 'Provides primary health care
services, pediatric health care, gynecology services, referrals, STD testing and treatment, HIV testing, tuberculosis skin testing, immunizations
and vaccinations, dental care and vision referrals, referrals for specialist services, and transportation for medical appointments. Also provides
mental health care, substance abuse, group and child counseling, assessment and referrals for substance abuse, and case managament.', 46),
('Atlanta Care Center', 'SonikaF', 'GA', 'Atlanta', 30309, 'Peachtree St #496', 1718, 'Office hours: Monday-Thursday 9:30am-4pm, Saturday 9:30am-1pm;
Provides confidential pregnancy testing, free ultrasounds, pregnancy counseling, adoption help and information, resources for maternity, and baby
clothing for women who are pregnant', 47),
('HOPE Atlanta: HIV/AIDS Program', 'SonikaF', 'GA', 'Atlanta', 30303, 'Marietta St, Suite 400', 75, 'Provides emergency services, crisis
intervention, transitional, and permanent housing to those with HIV/AIDS', 48),
('Atlanta Harm Reduction Coaltion', 'SonikaF', 'GA', 'Atlanta', 30314, 'Joseph E. Boone Blvd', 1231, 'Tuesday 10am-5pm, Wednesday 10am-5pm, and
Thursday 1pm-6pm; Provides education, risk reduction programs through partnership programs, diagnosis and treatment of substance abuse, HIV/AIDS,
sexually transmitted infections, viral Hepatitis, and other communicable diseases, free computer labe and phone use, free birth certificate and
ID services, treatment referral services, free meals, needle exchange, and hygiene kits', 49),
('Bethany Christian Services', 'SonikaF', 'GA', 'Atlanta', 30328, 'Peachtree Dunwoody Rd, NE', 6645, 'Provides family, couples, children, and group
counseling, information about pregnancy options, and options for financial assistance; fees: sliding fee scale, accepts Medicaid', 53),
('Families First, Inc: Counseling', 'SonikaF', 'GA', 'Atlanta', 30357, 'W Peachtree St, NE', 1105, 'Provides counseling in Cobb, Gwinnett, Decatur,
Harris-Johnston, North and South Fulton counties', 54),
('Odyssey Family Counseling Center', 'SonikaF', 'GA', 'Hapeville', 303054, 'S. Fulton Ave', 3578, 'Provides children (play therapy) and adolescent
counseling, family therapy, outpatient substance abuse treatment program for adolescents, groups (psycho-education, life and coping skills, anger
management, and relapse prevention), substance abuse support for adolescents, counseling for adolescents charged with sex offense crimes and/or at
risk for future involvement, and couples counseling', 55),
('Families First, Inc: Intervention Programs', 'SonikaF', 'GA', 'Atlanta', 30357, 'W. Peachtree St, NE', 1105, 'Provides Family Violence Intervention
Program group counseling classes in Midtown, Cobb, Gwinnett, Decatur, South Fulton, North Fulton, and Harris-Johnston', 56),
('Day League', 'SonikaF', 'GA', 'Decatur', 30030, 'Church Street', 204, 'Provides hospital accompaniment services, support groups and individual
counseling for youth (ages 13-18 years old), support groups and individual counseling for adults, and follow up services', 57),
('Grady Rape Crisis Center', 'SonikaF', 'GA', 'Atlanta', 30303, 'Jesse Hill Jr Drive, SE, Box 26049', 80, 'Provides support groups, counseling,
courtroom accompaniment, and community prevention programs', 58),
('HOPE Atlanta: Domestic Violence Program', 'SonikaF', 'GA', 'Atlanta', 30303, 'Marietta St, Suite 400', 75, 'Provides transportation, long distance
travel asssistance, and resettlement services who have left domestic violence situations', 59),
('Girls Education & Mentoring Services (GEMS)', 'SonikaF', 'NA', 'NA', 00, 'NA', 00, 'Mission: to empower girls and young women (ages 12-24) who
have experienced commerical sexual exploitation and domestic trafficking to exit the commercial sex industry and develop to their full potential', 61),
('National Survivor Network', 'SonikaF', 'NA', 'NA', 00, 'NA', 00, 'MissionL to bring together a community of human trafficking by creating a
platform for survivor-led advocacy, peer-to-peer mentorship and empowerment that embraces all survivors, regardless of gender, age, nationality,
or type of trafficking experience', 62),
('Beulah Baptist Church', 'SonikaF', 'GA', 'Atlanta', 30314, 'Griffin St, NW', 167, 'Open 11am-1pm and provides clothing and professional clothing
to individuals in the area', 65),
('Salvation Army', 'SonikaF', 'GA', 'Atlanta', 30340, 'Central Ave', 3771, 'Provides assistance with food, clothing, rent/mortgage, utilities,
school supplies, and furniture to families and individuals in a financial crisis', 68);
INSERT INTO Resource (
Name,
Creator_Username,
Address_State,
Address_City,
Address_Zip,
Address_Street,
Address_Number,
Documentation,
Description,
ID
) VALUES
('4Sarah', 'SonikaF', 'GA', 'Conyers', 30012, 'PO Box', 82685, 0, 'Provides short term housing for women who have been commercially sexually
exploited; Provides church placement, prayer, aftercare, residential program assistance, scholarships to assist with continuing education, STI/HIV
resources, suicide intervention, addiction and domestic violence resources', 9),
('Our House', 'SonikaF', 'GA', 'Decatur', 30030, 'Columbia Drive', 711, 0, 'Provides homeless families with family advocacy services inclusing case
management, goal setting and action planning, counseling services, help with resources and referral, and employment and job training opportunities;
Early Childhood Education Program: provides support for homeless children with a learning environment, services including immunizations and
health check-ups, developmental assessments, and onsite special education intervention services', 29);
INSERT INTO Resource (
Name,
Creator_Username,
Address_State,
Address_City,
Address_Zip,
Address_Street,
Address_Number,
Documentation,
ID
) VALUES
('National Human Trafficking Hotline and Resource Center',
'SonikaF',
'NA',
'NA',
0,
'NA',
0,
0,
84),
('Literacy Action',
'SonikaF',
'GA',
'Atlanta',
30303,
'Edgewood Ave, NE',
100,
0,
88);