Wish data needs to be stored in database tables
This ticket is to create the db tables themselves, plus a php interface to allow them to be read from/written to
`community_requests`
* `cr_id` int PK
* `cr_page_id` int ... FK to tbl `page`
* `cr_status_id` int
* `cr_type_id` int
* `cr_focus_area_page_title` string ... this links to tbl `communityrequests_focus_areas` via tbl `page` (see T388207)
* `cr_created` datetime
`community_requests_wish_page_translation`
* `crwpt_id` int PK
* `crwpt_id` int ... FK to tbl `communityrequests_wish_page`
* `crwpt_title` string
* `description` text
* `crwpt_audience` text
* `crwpt_other_project` text
* `crwpt_lang_code` string
* `crwpt_is_base_lang` bool
`community_requests_projects` ... linking table for many-to-many relationship between wishes and projects
* `cr_id` int FK to `community_requests`
* `cr_project_id` int from config
The following should be stored in config:
* set of projects with `project_id` and msg keys
* set of audiences with `audience_id` and msg keys
* set of statuses with `status_id` and msg keys
* set of wish types with `type_id` and msg keys