From 6d297688644a73c23fce7fbbaa5b402eca4d85d8 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 13 Dec 2017 16:58:14 -0500 Subject: Update pods to use file locks Also includes misc other fixes - adding labels, fixing pod names Signed-off-by: Matthew Heon Closes: #138 Approved by: rhatdan --- libpod/sql_state_internal.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'libpod/sql_state_internal.go') 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 { -- cgit v1.2.3-54-g00ecf