diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-24 19:15:27 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-24 19:15:27 -0400 |
commit | ddfe11c0444cf424cad3d14bc9be48d32423f3dd (patch) | |
tree | 135db4cd6bf22380953315ea1244f720a5419e2d /db/migrate/20140424230646_create_api_requests.rb | |
parent | 1b11684986136ee87da6242c3ba6aba5ef581510 (diff) | |
parent | 67d95e5b92e3d19765c7ccaf5460737ffe2173f4 (diff) |
Merge branch 'clean2'
Conflicts:
app/models/pm.rb
app/views/pms/index.html.erb
app/views/pms/show.html.erb
Diffstat (limited to 'db/migrate/20140424230646_create_api_requests.rb')
-rw-r--r-- | db/migrate/20140424230646_create_api_requests.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20140424230646_create_api_requests.rb b/db/migrate/20140424230646_create_api_requests.rb new file mode 100644 index 0000000..544c330 --- /dev/null +++ b/db/migrate/20140424230646_create_api_requests.rb @@ -0,0 +1,9 @@ +class CreateApiRequests < ActiveRecord::Migration + def change + create_table :api_requests do |t| + t.string :api_name + + t.timestamps + end + end +end |