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