Skip to content

data migrations after updating

Lan edited this page Sep 26, 2020 · 10 revisions

升级后的数据迁移

官网升级后需要对数据进行迁移,一下是汇总的迁移脚本

需要等老的数据导入进去之后再运行

PG数据库中运行

ALTER TABLE topics RENAME excellent TO grade;
DROP TABLE  IF EXISTS posts;
ALTER TABLE users DROP COLUMN verified;

Rails console中运行

# 在Rails console中运行
> require "./db/migrate/20200721022652_migrate_profile_data.rb"
MigrateProfileData.new.up
Clone this wiki locally