Sha256: d2355b99ed91c3e12f6e1e982af44594ffadcf403d9b1dd65861bfbadf7d4151

Contents?: true

Size: 482 Bytes

Versions: 2

Compression:

Stored size: 482 Bytes

Contents

ActiveRecord::Schema.define version: 0 do

  create_table :stars, force: true do |t|
    t.integer  "starable_id",   null: false
    t.string   "starable_type", null: false
    t.integer  "starer_id",     null: false
    t.string   "starer_type",   null: false
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table :users, force: true do |t|
    t.column :name, :string
  end

  create_table :bands, force: true do |t|
    t.column :name, :string
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
acts_as_starable-0.1.1 test/schema.rb
acts_as_starable-0.1.0 test/schema.rb