Skip to content

Commit 1acc67a

Browse files
author
Babak Gh
committed
table user added
1 parent 29af4a8 commit 1acc67a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class CreateUsers < ActiveRecord::Migration
2+
def up
3+
create_table :users do |t|
4+
t.string :name
5+
t.text :description
6+
7+
t.timestamps
8+
end
9+
end
10+
11+
def down
12+
end
13+
end

0 commit comments

Comments
 (0)