10 lines
149 B
Ruby
10 lines
149 B
Ruby
require "sequel"
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:projects) do
|
|
add_column :tmpstpbuild, Integer, default: 0
|
|
end
|
|
end
|
|
end
|