Show More
Commit Description:
merge with rails7 branch
Commit Description:
merge with rails7 branch
References:
File last commit:
Show/Diff file:
Action:
db/migrate/20150914090545_create_heart_beats.rb | 10 lines | 289 B | text/x-ruby | RubyLexer |
update migration
r822 class CreateHeartBeats < ActiveRecord::Migration[4.2]
add heart_beat
r533 def change
update migration
r822 create_table :heart_beats, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci" do |t|
add heart_beat
r533 t.column 'user_id',:integer
t.column 'ip_address',:string
t.timestamps
end
end
end