Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. state_demo2=# \d subtest;
  2.                       Table "public.subtest"
  3.        Column       |            Type             |   Modifiers  
  4. --------------------+-----------------------------+---------------
  5.  id                 | uuid                        | not null
  6.  subtest_type_id    | smallint                    | not null
  7.  name               | text                        |
  8.  parent_id          | uuid                        |
  9.  create_date        | timestamp without time zone | default now()
  10.  administered_date  | timestamp without time zone |
  11.  modified_date      | timestamp without time zone |
  12.  deleted_date       | timestamp without time zone |
  13.  annual_high_stakes | boolean                     |
  14. Indexes:
  15.     "subtest_pkey1" PRIMARY KEY, btree (id)
  16. Foreign-key constraints:
  17.     "subtest_subtest_type_id_fkey" FOREIGN KEY (subtest_type_id) REFERENCES subtest_type(id)
  18.  
  19.  
  20.  
  21.                  id                  |              parent_id               |                   name                    
  22. --------------------------------------+--------------------------------------+-------------------------------------------
  23.  2a65b066-386c-11e0-b6cc-60f64591c4a2 |                                      | Illinois ISAT - Reading, Math and Writing
  24.  e696b230-10e0-11df-80f4-1a7fbecf21f7 | 2a65b066-386c-11e0-b6cc-60f64591c4a2 | Math Explanation 2
  25.  e6982d22-10e0-11df-80f4-1a7fbecf21f7 | 2a65b066-386c-11e0-b6cc-60f64591c4a2 | Math Scale Score
  26.  e6a23a38-10e0-11df-80f4-1a7fbecf21f7 | 2a65b066-386c-11e0-b6cc-60f64591c4a2 | Math Knowledge 1
  27.  e6a35a58-10e0-11df-80f4-1a7fbecf21f7 | 2a65b066-386c-11e0-b6cc-60f64591c4a2 | Reading Scale Score
  28.  e6ab4f92-10e0-11df-80f4-1a7fbecf21f7 | 2a65b066-386c-11e0-b6cc-60f64591c4a2 | Math Knowledge 2
  29.  e6ac5acc-10e0-11df-80f4-1a7fbecf21f7 | 2a65b066-386c-11e0-b6cc-60f64591c4a2 | Reading Essay 1
  30.  e6ad6318-10e0-11df-80f4-1a7fbecf21f7 | 2a65b066-386c-11e0-b6cc-60f64591c4a2 | Reading Essay 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement