Hi folks,
Boldly going forward I set up a blank project for myself. As part of this project I set up a database on Postgresql with two very simple tables. The SQL definition for them is as follows:
1
2
3create table venue (
4 venue_id SERIAL not null PRIMARY KEY,
5 name text
6);
7
8create table trial (
9 trial_id SERIAL not null PRIMARY KEY,
10 name TEXT,
11 venue_id integer not null references venue(venue_id) on delete cascade
12);
My purpose for this was two fold. One I wanted to actually start applying what the tutorials have taught me thus far and I wanted to see how Skyway data types map to the schema that I am going to use for my applicaiton that I'm eventually hoping to use Skyway to build. (See http://www.agilitysteards.org if you'd like)
I created a data store under a service and set up the connection to the database for it. I then clicked on the "import data types" link and lo and behold the drop down for schema gets populated as I'd expect but the public schema seems to be blank. A quick check of the database reveals that there are tables here (and data I might add) but the import wizard isn't seeing them.
Is this a Enterprise feature or is this supported in the CE version?
Peter L. Berghold
Unix Professional
Dazed and confused Skyway Newbie.