1 | # Postgis 2.0 Template
|
---|
2 | createdb -U postgres postgis_2
|
---|
3 | createlang -U postgres plpgsql postgis_2
|
---|
4 |
|
---|
5 | psql -U postgres -d postgis_2 -f /usr/share/postgresql/8.4/contrib/postgis-2.0/postgis.sql
|
---|
6 | psql -U postgres -d postgis_2 -f /usr/share/postgresql/8.4/contrib/postgis-2.0/spatial_ref_sys.sql
|
---|
7 | psql -U postgres -d postgis_2 -f /usr/share/postgresql/8.4/contrib/postgis-2.0/legacy.sql
|
---|
8 |
|
---|
9 | createdb -U postgres -T postgis_2 newdb
|
---|
10 |
|
---|
11 | ./manage.py syncdb
|
---|
12 |
|
---|
13 | # Output:
|
---|
14 | Creating tables ...
|
---|
15 | Creating table auth_permission
|
---|
16 | Creating table auth_group_permissions
|
---|
17 | Creating table auth_group
|
---|
18 | Creating table auth_user_user_permissions
|
---|
19 | Creating table auth_user_groups
|
---|
20 | Creating table auth_user
|
---|
21 | Creating table django_content_type
|
---|
22 | Creating table django_session
|
---|
23 | Creating table django_site
|
---|
24 | Creating table django_admin_log
|
---|
25 | [... a lot of tables ...]
|
---|
26 | Creating table tv_myvdr
|
---|
27 |
|
---|
28 | You just installed Django's auth system, which means you don't have any superusers defined.
|
---|
29 | Would you like to create one now? (yes/no): yes
|
---|
30 | Username (leave blank to use 'ckarrie'):
|
---|
31 | E-mail address: *******
|
---|
32 | Password:
|
---|
33 | Password (again):
|
---|
34 | Superuser created successfully.
|
---|
35 | Installing custom SQL ...
|
---|
36 | Installing indexes ...
|
---|
37 | Failed to install index for bzs_base.Parcel model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
38 |
|
---|
39 | Failed to install index for bzs_base.Bzs model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
40 |
|
---|
41 | Failed to install index for bzs_analyze.IEP model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
42 |
|
---|
43 | Failed to install index for bzs_analyze.UndevPotential model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
44 |
|
---|
45 | Failed to install index for arp_schwachstellen.SchwPoint model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
46 |
|
---|
47 | Failed to install index for arp_schwachstellen.SchwPolygon model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
48 |
|
---|
49 | Failed to install index for arp_schwachstellen.SchwLine model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
50 |
|
---|
51 | Failed to install index for arp_schwachstellen.ExifData model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
|
---|
52 |
|
---|
53 | Installed 46 object(s) (of 135) from 3 fixture(s)
|
---|