Skip to content

Commit

Permalink
New action_text_rich_texts table on tables.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
anero committed May 28, 2024
1 parent c915a78 commit 6ea3086
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/data/tables.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
DROP TABLE IF EXISTS action_text_rich_texts;
CREATE TABLE action_text_rich_texts ("id" bigint, "name" CHARACTER VARYING(max), "body" CHARACTER VARYING(max), "record_type" CHARACTER VARYING(max), "record_id" bigint, "created_at" timestamp without time zone, "updated_at" timestamp without time zone);
DROP TABLE IF EXISTS admin_notes;
CREATE TABLE admin_notes ("id" bigint, "parent_type" CHARACTER VARYING(max), "parent_id" bigint, "source" CHARACTER VARYING(max), "user_id" bigint, "body" CHARACTER VARYING(max), "created_at" timestamp without time zone, "updated_at" timestamp without time zone);
DROP TABLE IF EXISTS attendee_shifts;
Expand Down

0 comments on commit 6ea3086

Please sign in to comment.