aboutsummaryrefslogtreecommitdiff
path: root/schema/embedded/database.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'schema/embedded/database.hxx')
-rw-r--r--schema/embedded/database.hxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/schema/embedded/database.hxx b/schema/embedded/database.hxx
index 82441b7..9a2cbed 100644
--- a/schema/embedded/database.hxx
+++ b/schema/embedded/database.hxx
@@ -1,4 +1,4 @@
-// file : template/database.hxx
+// file : schema/embedded/database.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain
@@ -52,14 +52,6 @@ create_database (int& argc, char* argv[])
auto_ptr<database> db (
new odb::sqlite::database (
argc, argv, false, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE));
-
- // Create the database schema.
- //
- {
- transaction t (db->begin ());
- schema_catalog::create_schema (*db);
- t.commit ();
- }
#elif defined(DATABASE_PGSQL)
auto_ptr<database> db (new odb::pgsql::database (argc, argv));
#endif