summaryrefslogtreecommitdiff
path: root/db/migrations/003_create_events.rb
blob: f9273a209fd81fe98333caeabb5e829e4de22732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Sequel.migration do
  up do
    create_table :events do
      primary_key :id
      foreign_key :computer_id, :computers
      String :type, null: false
      String :data, text: true
      DateTime :occurred_at, null: false
    end
  end

  down do
    drop_table :events
  end
end