Repository URL to install this package:
|
Version:
1.0.0.beta2 ▾
|
class CreateEventfulEvents < ActiveRecord::Migration[4.2]
def change
create_table :eventful_events do |t|
t.string :title
t.datetime :starts_at, index: true
t.datetime :ends_at, index: true
t.text :body
t.string :type, index: true
t.string :state
t.string :slug, index: true
t.timestamps null: false
end
end
end