root/branches/core_refactoring/src/Core/Model/ProjectsRepository.cs

3436
219
                using (SQLiteConnection con = new SQLiteConnection("Data Source=" + path + ";Version=3;New=True"))
219
                using (SQLiteConnection con = new SQLiteConnection("Data Source=" + path + ";Version=3;New=True"))
220
                {
220
                {
221
                    con.Open();
221
                    con.Open();
222
                    new SchemaExport(cfg).Execute(true, true, true, con, Console.Out);
222
                    new SchemaExport(cfg).Execute(true, true, false, con, Console.Out);
223
                }
223
                }
224
            }
224
            }
225
225