File: 20120622135717_create_servers.rb

package info (click to toggle)
ruby-after-commit-queue 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 296 kB
  • sloc: ruby: 217; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 151 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
class CreateServers < ActiveRecord::Migration
  def change
    create_table :servers do |t|
      t.string :state
      t.timestamps
    end
  end
end