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 408 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
  1. CREATE SCHEMA IF NOT EXISTS gr;
  2. CREATE TABLE gr.raw_interaction (
  3. gr_int_rid SERIAL NOT NULL,
  4. gr_int_data JSONB NOT NULL
  5. );
  6. CREATE TABLE gr.raw_book (
  7. gr_book_rid SERIAL NOT NULL,
  8. gr_book_data JSONB NOT NULL
  9. );
  10. CREATE TABLE gr.raw_work (
  11. gr_work_rid SERIAL NOT NULL,
  12. gr_work_data JSONB NOT NULL
  13. );
  14. CREATE TABLE gr.raw_author (
  15. gr_author_rid SERIAL NOT NULL,
  16. gr_author_data JSONB NOT NULL
  17. );
Tip!

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

Comments

Loading...