You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/migrate/20190808025851_create_video...

21 lines
520 B

class CreateVideos < ActiveRecord::Migration[5.2]
def change
create_table :videos do |t|
t.references :user, index: true, type: :integer
t.string :title
t.string :uuid, comment: 'Aliyun媒体ID'
t.string :cover_url, comment: '视频封面'
t.string :file_url, comment: '视频地址'
t.string :status
t.string :vod_status, comment: 'Aliyun媒体状态'
t.datetime :published_at, index: true
t.timestamps
t.index :uuid, unique: true
end
end
end