fixed indent

This commit is contained in:
Andreas Preikschat 2011-02-01 21:23:41 +01:00
parent 475d45d6cc
commit 5753afbca4

View File

@ -91,72 +91,72 @@ def init_schema(url):
--------------- ---------------
This table holds the names of all the authors. It has the following This table holds the names of all the authors. It has the following
columns: columns:
* id * id
* first_name * first_name
* last_name * last_name
* display_name * display_name
*authors_songs* Table *authors_songs* Table
--------------------- ---------------------
This is a bridging table between the *authors* and *songs* tables, which This is a bridging table between the *authors* and *songs* tables, which
serves to create a many-to-many relationship between the two tables. It serves to create a many-to-many relationship between the two tables. It
has the following columns: has the following columns:
* author_id * author_id
* song_id * song_id
*media_files* Table *media_files* Table
------------------- -------------------
* id * id
* file_name * file_name
* type * type
*media_files_songs* Table *media_files_songs* Table
------------------------- -------------------------
* media_file_id * media_file_id
* song_id * song_id
*song_books* Table *song_books* Table
------------------ ------------------
The *song_books* table holds a list of books that a congregation gets The *song_books* table holds a list of books that a congregation gets
their songs from, or old hymnals now no longer used. This table has the their songs from, or old hymnals now no longer used. This table has the
following columns: following columns:
* id * id
* name * name
* publisher * publisher
*songs* Table *songs* Table
------------- -------------
This table contains the songs, and each song has a list of attributes. This table contains the songs, and each song has a list of attributes.
The *songs* table has the following columns: The *songs* table has the following columns:
* id * id
* song_book_id * song_book_id
* title * title
* alternate_title * alternate_title
* lyrics * lyrics
* verse_order * verse_order
* copyright * copyright
* comments * comments
* ccli_number * ccli_number
* song_number * song_number
* theme_name * theme_name
* search_title * search_title
* search_lyrics * search_lyrics
*songs_topics* Table *songs_topics* Table
-------------------- --------------------
This is a bridging table between the *songs* and *topics* tables, which This is a bridging table between the *songs* and *topics* tables, which
serves to create a many-to-many relationship between the two tables. It serves to create a many-to-many relationship between the two tables. It
has the following columns: has the following columns:
* song_id * song_id
* topic_id * topic_id
*topics* Table *topics* Table
-------------- --------------
The topics table holds a selection of topics that songs can cover. This The topics table holds a selection of topics that songs can cover. This
is useful when a worship leader wants to select songs with a certain is useful when a worship leader wants to select songs with a certain
theme. This table has the following columns: theme. This table has the following columns:
* id * id
* name * name
""" """
session, metadata = init_db(url) session, metadata = init_db(url)