From 0d47dce6c0b894f7450bc05fbfe11ea00526edfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Thu, 23 Jun 2016 13:44:28 +0200 Subject: [PATCH] Change the module build states MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Locking is now implicit; the module should be composed only when it's marked as ready. That should be done by another service that handles dependant modules rebuilds. Signed-off-by: Petr Ĺ abata --- schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.sql b/schema.sql index dc537962..eb1dd111 100644 --- a/schema.sql +++ b/schema.sql @@ -3,7 +3,7 @@ CREATE TABLE IF NOT EXISTS modules ( name TEXT NOT NULL, -- e.g. foo, module name version TEXT NOT NULL, -- e.g. 1.23, module version release TEXT NOT NULL, -- e.g. 4, module release - state TEXT NOT NULL, -- init, wait, build, done, failed, locked + state TEXT NOT NULL, -- init, wait, build, done, failed, ready modulemd TEXT NOT NULL -- the entire modulemd file );