intra_app/db/migrate/20160830202641_create_data_file_passwords.rb
Nicolas Bally 761e075bb6 initial
2018-11-08 21:47:30 +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