From fb802445194c918683ae40a4cf79bc191879b1f2 Mon Sep 17 00:00:00 2001 From: yangzhenyu Date: Wed, 11 Oct 2017 10:28:20 +0800 Subject: [PATCH] delete some no use code Change-Id: Ic240a5f882adde56cdd8856179fc37a07775f72a --- zaqar/storage/sqlalchemy/tables.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/zaqar/storage/sqlalchemy/tables.py b/zaqar/storage/sqlalchemy/tables.py index 60d76b9a3..409f5e396 100644 --- a/zaqar/storage/sqlalchemy/tables.py +++ b/zaqar/storage/sqlalchemy/tables.py @@ -12,13 +12,10 @@ # License for the specific language governing permissions and limitations under # the License. -from oslo_utils import timeutils import sqlalchemy as sa metadata = sa.MetaData() -now = timeutils.utcnow - Queues = sa.Table('Queues', metadata, sa.Column('id', sa.INTEGER, primary_key=True), sa.Column('project', sa.String(64)),