Skip to content

Commit

Permalink
chore(migrations): new table iana_feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dieh committed Oct 6, 2023
1 parent b389adf commit 0f398aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--DROP TABLE "mapa_do_acolhimento".iana_feedback;
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
CREATE TABLE "mapa_do_acolhimento"."iana_feedback" (
"id" SERIAL NOT NULL,
"created_at" TIMESTAMP NOT NULL DEFAULT now(),
"user_id" BIGINT NOT NULL,
"question" TEXT NOT NULL,
"answer" TEXT,

CONSTRAINT "iana_feedback_pkey" PRIMARY KEY ("id")
);

0 comments on commit 0f398aa

Please sign in to comment.