Skip to content

Commit

Permalink
deploying the final project
Browse files Browse the repository at this point in the history
  • Loading branch information
vorleakyek committed Feb 13, 2024
1 parent 95d5187 commit 63d6466
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions database/schema.sql
Original file line number Diff line number Diff line change
@@ -1,46 +1,3 @@
-- set client_min_messages to warning;

-- -- DANGER: this is NOT how to do it in the real world.
-- -- `drop schema` INSTANTLY ERASES EVERYTHING.
-- drop schema "public" cascade;

-- create schema "public";

-- CREATE TABLE "users" (
-- "userId" serial PRIMARY KEY,
-- "username" text not null,
-- "hashedPassword" text not null,
-- "createdAt" timestamptz(6) not null default now()
-- );

-- CREATE TABLE "UserGameProgress" (
-- "setOfCardsId" serial PRIMARY KEY,
-- "userId" integer not null,
-- "level" integer not null,
-- "cardTheme" text not null,
-- "star" integer,
-- "score" float,
-- "completedTime" float,
-- "totalClicked" integer,
-- "sound" boolean,
-- "createdAt" timestamptz(6) not null default now()
-- );

-- CREATE TABLE "pokemonData" (
-- "id" integer,
-- "name" text,
-- "type" text,
-- "imageUrl" text
-- );


--
-- PostgreSQL database dump
--

-- Dumped from database version 14.5 (Ubuntu 14.5-0ubuntu0.22.04.1)
-- Dumped by pg_dump version 14.5 (Ubuntu 14.5-0ubuntu0.22.04.1)

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
Expand Down

0 comments on commit 63d6466

Please sign in to comment.