8 lines
118 B
Ruby
8 lines
118 B
Ruby
|
Sequel.migration do
|
||
|
change do
|
||
|
alter_table :user_tables do
|
||
|
add_column :table_id, Integer
|
||
|
end
|
||
|
end
|
||
|
end
|