panier_app/migrations/01230_create_video_folders.rb
Nicolas Bally d744a04b28 initial
2020-10-30 22:26:40 +01:00

14 lines
343 B
Ruby

class CreateVideoFolders < ActiveRecord::Migration[6.0]
def change
create_table :video_folders do |t|
t.string :name
t.boolean :super_admin, :default => false
t.text :description
t.boolean :public, :default => false
t.integer :position
t.timestamps
end
end
end