Skip to content

Commit

Permalink
Missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
isc committed Oct 27, 2023
1 parent 6a07891 commit 7aabca3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddColumnOptionsToTableConfigurations < ActiveRecord::Migration[7.0]
def change
add_column :table_configurations, :column_options, :json, default: {}
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddColumnSelectionToTableConfiguration < ActiveRecord::Migration[7.0]
def change
add_column :table_configurations, :column_selection, :json, default: {}
end
end

0 comments on commit 7aabca3

Please sign in to comment.