10 lines
181 B
Ruby
10 lines
181 B
Ruby
Sequel.migration do
|
|
up do
|
|
add_column :organizations, :viewer_seats, :integer, null: false, default: 0
|
|
end
|
|
|
|
down do
|
|
drop_column :organizations, :viewer_seats
|
|
end
|
|
end
|