diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-04-26 20:27:09 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-04-26 20:27:09 -0400 |
commit | 0776c57b939208736db60d38b4530e8b1c306ec6 (patch) | |
tree | 6a831d94039c9c86175b73af0aab525e6bd78983 /db/migrate/20140427001446_create_sessions.rb | |
parent | 853c307700fa81b924e00bf430c878a3b7029ffe (diff) | |
parent | 62219ac4e3af36cc15c9ad61701550bee9a8424c (diff) |
Merge branch 'clean2'
Conflicts:
app/controllers/tournaments_controller.rb
app/views/tournaments/index.html.erb
app/views/tournaments/show.html.erb
Diffstat (limited to 'db/migrate/20140427001446_create_sessions.rb')
-rw-r--r-- | db/migrate/20140427001446_create_sessions.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140427001446_create_sessions.rb b/db/migrate/20140427001446_create_sessions.rb new file mode 100644 index 0000000..f667f1e --- /dev/null +++ b/db/migrate/20140427001446_create_sessions.rb @@ -0,0 +1,11 @@ +class CreateSessions < ActiveRecord::Migration + def change + create_table :sessions do |t| + t.references :user, index: true + t.string :token + + t.timestamps + end + add_index :sessions, :token, unique: true + end +end |