kaps_app/db/migrate/20160830202641_create_data_file_passwords.rb
Nicolas Bally d60301e8a7 initial
2019-01-21 01:15:10 +01:00

13 lines
273 B
Ruby

class CreateDataFilePasswords < ActiveRecord::Migration
def change
create_table :data_file_passwords do |t|
t.references :data_file
t.string :token
t.text :description
t.integer :nbr_downloads
t.timestamps null: false
end
end
end