Sha256: def92e5ed521e85ac68333007a74d7726e1ea062b878f9589e254ff4c0cd546a

Contents?: true

Size: 200 Bytes

Versions: 2

Compression:

Stored size: 200 Bytes

Contents

class ABTokens < ActiveRecord::Migration
  def self.up
    create_table :a_b_tokens do |t|
      t.string :token
      t.timestamps
    end
  end

  def self.down
    drop_table :a_b_tokens
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
a_b-0.1.1 db/migrate/004_a_b_tokens.rb
a_b-0.1.0 db/migrate/004_a_b_tokens.rb