fix MR comments

This commit is contained in:
Bilal
2020-08-26 14:35:56 +03:00
parent 73b48c5a5b
commit 70a0c77054
6 changed files with 10 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
class AddStarToBroadcastRecordings < ActiveRecord::Migration[6.0]
def change
add_column :broadcast_recordings, :star, :boolean
add_column :broadcast_recordings, :starred, :boolean, default: false
end
end

View File

@@ -542,7 +542,7 @@ CREATE TABLE public.broadcast_recordings (
updated_at timestamp(6) without time zone NOT NULL,
duration double precision,
hidden boolean DEFAULT false,
star boolean
starred boolean DEFAULT false
);