Skip to content
Snippets Groups Projects
Commit c50f82d2 authored by David Sadler's avatar David Sadler
Browse files

Added blank post table

parent 6d4a0364
No related branches found
No related tags found
6 merge requests!65Master,!50Change navigation buttons to reflect user feedback,!47fix profuction sort button flickering issue,!43Recruiter: Add staring and evidence ;Student: add Dashboard Timeline; Add univseral navbar,!36Create pages from mockups and link with Prisma Merge,!31Recruiter internship page
Pipeline #422889 passed
-- CreateTable
CREATE TABLE "Post" (
"id" SERIAL NOT NULL,
"name" TEXT NOT NULL,
CONSTRAINT "Post_pkey" PRIMARY KEY ("id")
);
......@@ -15,4 +15,9 @@ model Student {
id Int @id @default(autoincrement())
language String
maths String
}
model Post {
id Int @id @default(autoincrement())
name String
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment