8 lines
196 B
Ruby
8 lines
196 B
Ruby
class DBremovePieceJustificativeEmpty < ActiveRecord::Migration
|
|
class PieceJustificative < ActiveRecord::Base
|
|
end
|
|
|
|
def change
|
|
PieceJustificative.where(content: nil).delete_all
|
|
end
|
|
end
|