Make exports#key not-null

This commit is contained in:
Paul Chavard 2021-04-02 17:42:24 +01:00
parent fc49b7952e
commit 7f3d4a26ad
3 changed files with 8 additions and 3 deletions

View file

@ -0,0 +1,5 @@
class ExportsKeyNotNull < ActiveRecord::Migration[6.1]
def change
change_column_null :exports, :key, false
end
end