misc/migration/3.21.2_Any.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 22 Dec 2015 15:35:10 +0100
changeset 11034 75d752e6daf7
parent 10627 ffef8ac383f4
permissions -rw-r--r--
[server] improve TZDatetime support by depending on logilab-database 1.15.0 including https://www.logilab.org/ticket/1485893, we can now keep the tzinfo attribute on datetime objects for TZDatetime attributes, so one knows that this is a tz-aware datetime. To easily make it work with backends that have no tz support, we keep converting tz-aware datetime objects into utc naive datetime objects before sending them to the database.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10624
48e54aabcd55 [schema] remove unique constraint on unlimited String attribute
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     1
sync_schema_props_perms('cwuri')
10627
ffef8ac383f4 moved_entities.extid may not be NULL
Julien Cristau <julien.cristau@logilab.fr>
parents: 10624
diff changeset
     2
ffef8ac383f4 moved_entities.extid may not be NULL
Julien Cristau <julien.cristau@logilab.fr>
parents: 10624
diff changeset
     3
helper = repo.system_source.dbhelper
ffef8ac383f4 moved_entities.extid may not be NULL
Julien Cristau <julien.cristau@logilab.fr>
parents: 10624
diff changeset
     4
cu = session.cnxset.cu
ffef8ac383f4 moved_entities.extid may not be NULL
Julien Cristau <julien.cristau@logilab.fr>
parents: 10624
diff changeset
     5
helper.set_null_allowed(cu, 'moved_entities', 'extid', 'VARCHAR(256)', False)
ffef8ac383f4 moved_entities.extid may not be NULL
Julien Cristau <julien.cristau@logilab.fr>
parents: 10624
diff changeset
     6
ffef8ac383f4 moved_entities.extid may not be NULL
Julien Cristau <julien.cristau@logilab.fr>
parents: 10624
diff changeset
     7
commit()