diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-12-13 16:58:14 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-14 18:18:16 +0000 |
commit | 6d297688644a73c23fce7fbbaa5b402eca4d85d8 (patch) | |
tree | 8219e44ba61f50a913031d85b68fdaa23ee09606 /libpod/sql_state_internal.go | |
parent | d8f099bb5a38b85bdea2bf6d99e0dbd0457ab666 (diff) | |
download | podman-6d297688644a73c23fce7fbbaa5b402eca4d85d8.tar.gz podman-6d297688644a73c23fce7fbbaa5b402eca4d85d8.tar.bz2 podman-6d297688644a73c23fce7fbbaa5b402eca4d85d8.zip |
Update pods to use file locks
Also includes misc other fixes - adding labels, fixing pod names
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #138
Approved by: rhatdan
Diffstat (limited to 'libpod/sql_state_internal.go')
-rw-r--r-- | libpod/sql_state_internal.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libpod/sql_state_internal.go b/libpod/sql_state_internal.go index 515b5b6ad..12a7dbd10 100644 --- a/libpod/sql_state_internal.go +++ b/libpod/sql_state_internal.go @@ -154,8 +154,6 @@ func prepareDB(db *sql.DB) (err error) { // TODO add Pod ID to CreateStaticContainer as a FOREIGN KEY referencing podStatic(Id) // TODO add ctr shared namespaces information - A separate table, probably? So we can FOREIGN KEY the ID // TODO schema migration might be necessary and should be handled here - // TODO add a table for the runtime, and refuse to load the database if the runtime configuration - // does not match the one in the database // Enable foreign keys in SQLite if _, err := db.Exec("PRAGMA foreign_keys = ON;"); err != nil { |