mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-22 00:56:34 +03:00
Merge pull request #167 from meanmail/develop
Support for adding a column to the beginning of a table
This commit is contained in:
commit
da591dc649
|
@ -83,10 +83,12 @@ class AlterTable(ModelOperation):
|
||||||
is_regular_field = not (field.materialized or field.alias)
|
is_regular_field = not (field.materialized or field.alias)
|
||||||
if name not in table_fields:
|
if name not in table_fields:
|
||||||
logger.info(' Add column %s', name)
|
logger.info(' Add column %s', name)
|
||||||
assert prev_name, 'Cannot add a column to the beginning of the table'
|
|
||||||
cmd = 'ADD COLUMN %s %s' % (name, field.get_sql(db=database))
|
cmd = 'ADD COLUMN %s %s' % (name, field.get_sql(db=database))
|
||||||
if is_regular_field:
|
if is_regular_field:
|
||||||
cmd += ' AFTER %s' % prev_name
|
if prev_name:
|
||||||
|
cmd += ' AFTER %s' % prev_name
|
||||||
|
else:
|
||||||
|
cmd += ' FIRST'
|
||||||
self._alter_table(database, cmd)
|
self._alter_table(database, cmd)
|
||||||
|
|
||||||
if is_regular_field:
|
if is_regular_field:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user