Matthew Phelan
3 years ago
17 changed files with 1250 additions and 10 deletions
@ -1,6 +1,9 @@ |
|||||||
class UpdatePropertyNumberOfTimesReletType < ActiveRecord::Migration[6.1] |
class UpdatePropertyNumberOfTimesReletType < ActiveRecord::Migration[6.1] |
||||||
def change |
def up |
||||||
remove_column :case_logs, :property_number_of_times_relet, :string |
change_column :case_logs, :property_number_of_times_relet, "integer USING CAST(property_number_of_times_relet AS integer)" |
||||||
add_column :case_logs, :property_number_of_times_relet, :integer |
end |
||||||
|
|
||||||
|
def down |
||||||
|
change_column :case_logs, :property_number_of_times_relet, :string |
||||||
end |
end |
||||||
end |
end |
||||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,17 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html lang="en"> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8"> |
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||||
|
<link rel="stylesheet" type="text/css" href="//pagecdn.io/lib/swagger-ui/v3.31.1/swagger-ui.css"> |
||||||
|
<title>OpenAPI DLUHC CORE Data Collection</title> |
||||||
|
<body><div id="openapi"><script src="//pagecdn.io/lib/swagger-ui/v3.31.1/swagger-ui-bundle.js"></script> |
||||||
|
<script> |
||||||
|
window.onload = function () { |
||||||
|
const ui = SwaggerUIBundle({ |
||||||
|
url: "api/DLUHC-CORE-Data.v1.json", |
||||||
|
dom_id: "#openapi" |
||||||
|
}) |
||||||
|
} |
||||||
|
</script> |
||||||
|
</body> |
Loading…
Reference in new issue