Analytics and jquery fallback
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddFirstnameToUsers < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :users, :firstname, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddLastnameToUsers < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :users, :lastname, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,12 @@
|
||||
class AddSessionsTable < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :sessions do |t|
|
||||
t.string :session_id, :null => false
|
||||
t.text :data
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_index :sessions, :session_id, :unique => true
|
||||
add_index :sessions, :updated_at
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user