12 lines
305 B
Ruby
12 lines
305 B
Ruby
|
class CreateEvents < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :events do |t|
|
||
|
t.string :kind, limit: 255
|
||
|
t.references :eventable, polymorphic: true, index: true
|
||
|
t.references :user, index: true
|
||
|
t.references :map, index: true
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|