Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minha lista de compras #6

Open
Diego-Brocanelli opened this issue Oct 10, 2019 · 0 comments
Open

Minha lista de compras #6

Diego-Brocanelli opened this issue Oct 10, 2019 · 0 comments
Labels
ideia representa issues de ideias

Comments

@Diego-Brocanelli
Copy link
Owner

Descrição completa da ideia

Aplicativo responsável por criar e compartilhar lista de compras entre usuários.

Recursos

  • Criar/gerenciar conta de usuário.
  • Troca de senha, por e-mail.
  • Gerenciar listas de compras.
  • Gerenciar itens da lista de compras.
  • Gerenciar usuários com listas de compras compartilhadas.

O aplicativo pode evoluir para:

  • Comunicação em tempo real, onde a pessoa pode ir dando baixa do produto.
  • Troca de mensagens.
  • Listas recorrentes.

Entidades

  • user
    • id int not null AUTO_INCREMENT primary key
    • name varchar(255) not null
    • email varchar(255) not null unique
    • password varchar(255) not null
  • list
    • id int not null AUTO_INCREMENT primary key
    • name varchar(255) not null
    • description text
    • created_at datetiem not null
    • active tinyint default 1
  • list_item
    • id int not null AUTO_INCREMENT primary key
    • list_id int not null
    • item varchar(255) not null
    • quantity varchar(255)
  • invite_user
    • id int not null AUTO_INCREMENT primary key
    • user_base int not null
    • user_guest int not null
    • list_id int not null
    • active tinyint default

Material de apoio

Autor

@Diego-Brocanelli Diego-Brocanelli added the ideia representa issues de ideias label Oct 10, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ideia representa issues de ideias
Projects
None yet
Development

No branches or pull requests

1 participant