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 358 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
  1. CREATE TABLE gr_interaction (
  2. gr_int_rid SERIAL NOT NULL,
  3. gr_int_data JSONB NOT NULL
  4. );
  5. CREATE TABLE gr_book (
  6. gr_book_rid SERIAL NOT NULL,
  7. gr_book_data JSONB NOT NULL
  8. );
  9. CREATE TABLE gr_work (
  10. gr_work_rid SERIAL NOT NULL,
  11. gr_work_data JSONB NOT NULL
  12. );
  13. CREATE TABLE gr_author (
  14. gr_author_rid SERIAL NOT NULL,
  15. gr_author_data JSONB NOT NULL
  16. );
Tip!

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

Comments

Loading...