Files
grecia/db/migrate/20231009143355_add_order_to_widget_cards.rb
taitus 9dd10cac19 Add order field to widget cards
We will use this field to enter the position where the cards will be shown to the
user in the homepage.
2024-03-21 18:10:26 +01:00

6 lines
154 B
Ruby

class AddOrderToWidgetCards < ActiveRecord::Migration[6.1]
def change
add_column :widget_cards, :order, :integer, null: false, default: 1
end
end