LoginSignup
4
2

More than 5 years have passed since last update.

1行で書くmix ecto.gen.migrationのメモ

Last updated at Posted at 2018-01-23

mix ecto.gen.migration → mix ecto.migrate する際の、priv/repo/migrations/【yyyymmddHHMMSS】_【ecto.gen.migrationで指定した名前】.exsの「def change」内に1行で書く書式

drop table( :table_name )
alter table( :table_name ), do: add :column_name, :integer
alter table( :table_name ), do: remove :column_name
create index( :table_name, [ :column_name ] )
drop index( :table_name, [ :column_name ] )
rename table( :table_name ), table( :new_table_name )

ちなみに、以下は自動更新されないため、column removeしたときは、手動で修正するのをお忘れなく

lib/【PJ名】_web/templates/【スキーマ名】/form.html.eex
lib/【PJ名】_web/templates/【スキーマ名】/index.html.eex
lib/【PJ名】_web/templates/【スキーマ名】/show.html.eex
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2