scinote-web/db/migrate/20150923065605_create_temp_files.rb
2020-01-07 13:43:32 +01:00

10 lines
192 B
Ruby

class CreateTempFiles < ActiveRecord::Migration[4.2]
def change
create_table :temp_files do |t|
t.string :session_id, null: false
t.timestamps null: false
end
end
end