Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • R Ringtone-Adaptation
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1
    • Issues 1
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 1
    • Merge requests 1
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Shantanu Mishra (shm572)
  • Ringtone-Adaptation
  • Wiki
  • database

database · Changes

Page history
Create database authored Jun 09, 2020 by Arjot Singh Rai (arr455)'s avatar Arjot Singh Rai (arr455)
Hide whitespace changes
Inline Side-by-side
database.md 0 → 100644
View page @ a52c7ff3
This app will use Room for databases.
```
The database is structured as followed:
Table Name: LocationStatus
Columns:
* location_status_id: primary key; int;
* location: int; foreign key;
* status: foreign key; int;
Table Name: Location
* location_id: primary key; int
* location: string;**(Note: Might needed to be changed according to the way this data is to be stored.) **
Table Name: Status
* status_id: primary key; int
* status: string; **( Note: Might needed to be changed according to the way this data is to be stored. ) **
All fields are required.
```
\ No newline at end of file
Clone repository
  • Home
  • database