Sha256: 12468ceb0a5afea5c72129d408c635e732ba6a95d86ad527acf5e53f8cc131c0
Contents?: true
Size: 340 Bytes
Versions: 75
Compression:
Stored size: 340 Bytes
Contents
# -*- encoding : utf-8 -*- class CreateBookmarks < ActiveRecord::Migration def self.up create_table :bookmarks do |t| t.integer :user_id, :null=>false t.text :url t.string :document_id t.string :title t.text :notes t.timestamps end end def self.down drop_table :bookmarks end end
Version data entries
75 entries across 75 versions & 4 rubygems