Moor: rename table column

Created on 1 Sep 2019  路  1Comment  路  Source: simolus3/moor

is any solution to rename column?

Most helpful comment

It is not easy to do this automatically, so no. Sqlite doesn't have support for it, so there's little we can do here. Workarounds exist by

  1. copying the existing table into a temporary table
  2. dropping the old table
  3. re-creating the old table, but with the updated column names
  4. copying the data from the temporary table into the old table, for instance with an INSERT INTO SELECT statement

Some queries that could be used to achieve this are described in this StackOverflow answer. You can use issueCustomQuery on the migrator to execute them.

If you only want to rename the column, I would actually recommend to rename it in Dart and keep the old sql name. So for instance,

IntColumn myFancyColumn => integer()...();

could be renamed with

IntColumn myRenamedColumn => integer().named('my_fancy_column')...();

>All comments

It is not easy to do this automatically, so no. Sqlite doesn't have support for it, so there's little we can do here. Workarounds exist by

  1. copying the existing table into a temporary table
  2. dropping the old table
  3. re-creating the old table, but with the updated column names
  4. copying the data from the temporary table into the old table, for instance with an INSERT INTO SELECT statement

Some queries that could be used to achieve this are described in this StackOverflow answer. You can use issueCustomQuery on the migrator to execute them.

If you only want to rename the column, I would actually recommend to rename it in Dart and keep the old sql name. So for instance,

IntColumn myFancyColumn => integer()...();

could be renamed with

IntColumn myRenamedColumn => integer().named('my_fancy_column')...();
Was this page helpful?
0 / 5 - 0 ratings

Related issues

jerryzhoujw picture jerryzhoujw  路  4Comments

VadimOsovsky picture VadimOsovsky  路  3Comments

KKRoko picture KKRoko  路  3Comments

Holofox picture Holofox  路  4Comments

easazade picture easazade  路  3Comments