17 lines
281 B
Ruby
17 lines
281 B
Ruby
require 'carto/db/migration_helper'
|
|
|
|
include Carto::Db::MigrationHelper
|
|
|
|
migration(
|
|
Proc.new do
|
|
alter_table :users do
|
|
set_column_allow_null :engine_enabled
|
|
end
|
|
end,
|
|
Proc.new do
|
|
alter_table :users do
|
|
set_column_not_null :engine_enabled
|
|
end
|
|
end
|
|
)
|