Upstream sync
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class AddNameAndDescriptionToBroadcastRecordings < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
add_column :broadcast_recordings, :name, :string
|
||||
add_column :broadcast_recordings, :description, :text
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddStarToBroadcastRecordings < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
add_column :broadcast_recordings, :starred, :boolean, default: false
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user