mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
7 lines
169 B
Ruby
7 lines
169 B
Ruby
|
class AddSlugToEventTheme < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :event_themes, :slug, :string
|
||
|
add_index :event_themes, :slug, unique: true
|
||
|
end
|
||
|
end
|