Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

gr-schema.sql 444 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. DROP SCHEMA IF EXISTS gr CASCADE;
  2. CREATE SCHEMA gr;
  3. CREATE TABLE gr.raw_interaction (
  4. gr_interaction_rid SERIAL NOT NULL,
  5. gr_interaction_data JSONB NOT NULL
  6. );
  7. CREATE TABLE gr.raw_book (
  8. gr_book_rid SERIAL NOT NULL,
  9. gr_book_data JSONB NOT NULL
  10. );
  11. CREATE TABLE gr.raw_work (
  12. gr_work_rid SERIAL NOT NULL,
  13. gr_work_data JSONB NOT NULL
  14. );
  15. CREATE TABLE gr.raw_author (
  16. gr_author_rid SERIAL NOT NULL,
  17. gr_author_data JSONB NOT NULL
  18. );
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...