Skip to content

Commit

Permalink
chore(data): add eligibilities (#741)
Browse files Browse the repository at this point in the history
Co-authored-by: Leland Garofalo <[email protected]>
  • Loading branch information
lgarofalo and Leland Garofalo committed Jun 15, 2024
1 parent c812f84 commit 547e601
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions db/sql/add-eligibilities-05-01-2024.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
insert into eligibilities (name, created_at, updated_at)
values ('Toddler Age',now(),now());

insert into eligibilities (name, created_at, updated_at)
values ('Preteen',now(),now());

insert into eligibilities (name, created_at, updated_at)
values ('Transitional Aged Youth (TAY)',now(),now());

insert into eligibilities (name, created_at, updated_at)
values ('Preschool Student',now(),now());

insert into eligibilities (name, created_at, updated_at)
values ('Elementary School Student',now(),now());

insert into eligibilities (name, created_at, updated_at)
values ('Postgraduate Student',now(),now());

insert into eligibilities (name, created_at, updated_at)
values ('Married without children',now(),now());

0 comments on commit 547e601

Please sign in to comment.