6 lines
135 B
Ruby
6 lines
135 B
Ruby
class MakeProjectsStatusNotNull < ActiveRecord::Migration[8.0]
|
|
def change
|
|
change_column_null :projects, :status, false
|
|
end
|
|
end
|