6 lines
129 B
Ruby
6 lines
129 B
Ruby
class AddSkyspaceUrlToTable < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :tables, :skyspace_url, :string
|
|
end
|
|
end
|