~ubuntu-branches/ubuntu/vivid/ceilometer/vivid

« back to all changes in this revision

Viewing changes to ceilometer/storage/sqlalchemy/migrate_repo/versions/029_sample_recorded_at.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-03-06 14:44:28 UTC
  • mto: (28.1.1 utopic-proposed) (1.2.1)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: package-import@ubuntu.com-20140306144428-rvphsh4igwyulzf0
Tags: upstream-2014.1~b3
ImportĀ upstreamĀ versionĀ 2014.1~b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
#
 
3
# Licensed under the Apache License, Version 2.0 (the "License"); you may
 
4
# not use this file except in compliance with the License. You may obtain
 
5
# a copy of the License at
 
6
#
 
7
#      http://www.apache.org/licenses/LICENSE-2.0
 
8
#
 
9
# Unless required by applicable law or agreed to in writing, software
 
10
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
11
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
12
# License for the specific language governing permissions and limitations
 
13
# under the License.
 
14
 
 
15
import sqlalchemy
 
16
 
 
17
from ceilometer.openstack.common import timeutils
 
18
from ceilometer.storage.sqlalchemy import models
 
19
 
 
20
 
 
21
def upgrade(migrate_engine):
 
22
    meta = sqlalchemy.MetaData(bind=migrate_engine)
 
23
    meter = sqlalchemy.Table('meter', meta, autoload=True)
 
24
    c = sqlalchemy.Column('recorded_at', models.PreciseTimestamp(),
 
25
                          default=timeutils.utcnow)
 
26
    meter.create_column(c)
 
27
 
 
28
 
 
29
def downgrade(migrate_engine):
 
30
    meta = sqlalchemy.MetaData(bind=migrate_engine)
 
31
    meter = sqlalchemy.Table('meter', meta, autoload=True)
 
32
    meter.drop_column('recorded_at')