Skip to content

Commit

Permalink
Create 20231107215104_bulk_action_sti.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
ewlarson committed Nov 7, 2023
1 parent c7593c4 commit 8c641ed
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions db/migrate/20231107215104_bulk_action_sti.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

class BulkActionSti < ActiveRecord::Migration[6.1]
def change
add_column :bulk_actions, :type, :string, null: false
add_column :bulk_actions, :action, :string, null: true
change_column :bulk_actions, :field_name, :string, null: true
change_column :bulk_actions, :field_value, :string, null: true
end
end

0 comments on commit 8c641ed

Please sign in to comment.