summaryrefslogtreecommitdiff
path: root/db/migrate/20090129204750_create_nodes.rb
blob: e26dd39ce4b7e1a57ae097e1e7c94e0fd03d8408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateNodes < ActiveRecord::Migration[4.2]
  def self.up
    create_table :nodes do |t|
      t.string :slug
      t.string :unique_name

      t.timestamps
    end
  end

  def self.down
    drop_table :nodes
  end
end