Example text for the description of the project
Behavior | Input Example | Output Example |
---|
- Clone the repository
- Run the command 'gradle run'
- Open browser and go to localhost:4567
CREATE DATABASE virtual_pets; CREATE TABLE persons (id serial PRIMARY KEY, name varchar, email varchar); CREATE TABLE monsters (id serial PRIMARY KEY, name varchar, personID int, birthday timestamp, lastate timestamp, lastslept timestamp, lastplayed timestamp, type varchar, lastWater timestamp, lastKindling timestamp); CREATE TABLE communities (id SERIAL PRIMARY KEY, name varchar, description varchar); CREATE TABLE communities_persons (id serial PRIMARY KEY, community_id int, person_id int);
DROP DATABASE virtual_pets_test; CREATE DATABASE virtual_pets_test WITH TEMPLATE virtual_pets;
Copyright (c) 2017 _Dallas Slaughter and Mark Fisher
This software is licensed under the MIT license.