mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
8 lines
147 B
Ruby
8 lines
147 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :users do |t|
|
|
t.string :name
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|